Management of an APEX with walk-APIs - it APEX runtime environment?

People,

APEX Version: 4.2.1
Database EE 11 GR 2
Listener: EPG

TLDR: Go at the end of the question for this thread in bold.

I work in an environment where we have maintained by Oracle Forms applications and Oracle APEX on a database only internal production data. We want to take a redacted together these data (PII or personal Identifiable Information removal) and some applications of the APEX and put them on a separate external server for public consumption. The internal production environment is running APEX with the runtime and development environments. The external server runs APEX with just the execution with the query, only the applications environment. While two of the external applications are public applications without authentication (both work very well), there is an application that will have a relatively small number of users who authenticate with the application to access more detailed information than the general public. Still no PII or something like that, a little more information. Users are users of workspace APEX. The three applications are in the same workspace.

I have to assume that I'm not the only person with the above configuration, but I had a moment difficult to work right. Although the documentation does not have the API, it is not always clear which API you would use and why.

For example, in the internal production environment when a user connects to the authenticated application, they get access to the application (if they are in the right group) or they get an error page indicating that they have no access to the application. In the external runtime application that they will always have a ' ORA-06550: line 4, column 55: PLS-00201: identifier ' WWV_FLOW_F4000_PLUGINS.» ' INTERNAL_4155_SESSION_SENTRY' must be declared ORA-06550: line 4, column 1: PL/SQL: statement ignored ' error, which "sort of" makes sense because the application referenced (4155) is part of the installation of development and is not included as part of the runtime install only (either by the way, this seems like a bit of an oversight on the part of the APEX team). It is pretty obvious that the export and import of the workspace (and its users) 'something' got zero and some type of password reset is requested. Of course, end-user password reset request is not included in a single installation of runtime...

So, off to the API to see if I can "reset" on the single runtime installation external users so that they do not have to reset their passwords when first connecting. Wow... Lots and lots of API. Understand that you must set the security with the APEX_UTIL group id. SET_SECURITY_GROUP_ID API takes some time. After much wandering around, I settled on the apex_util API and the WWV_FLOW_USERS view as a good place to study...

However, when we query the view WWV_FLOW_USERS on each side, all of the columns "expected" that one would expect because of this behavior are identical between the installation of development / internal enforcement and the only external runtime installation. Things like CHANGE_PASSWORD_ON_FIRST_USE and FIRST_PASSWORD_USE_OCCURRED are identical (and btw, not the values that you expect them to be... FIRST_PASSWORD_USE_OCCURRED is N for all users except the user ADMIN). The only values that differ between the two environments are as CREATED_BY, CREATION_DATE, LAST_UPDATED_DATE, and LAST_UPDATED_BY columns.

Things that work just great:

< li > the installation itself! Very easy to move backward between each environment (runtime only or runtime and development).
< Li > integration with SQL/Developer is fantastic. It is very cool to be able to right-click on an application in the internal environment and deploy it to the unique runtime environment. Ideally, it would be nice to be able to move workspaces APEX in the same way.

Things that do not seem to be large:

< Li > when that documentation tells you what each API, it doesn't tell you why you want to use it, or what you would use it for. Having a section "useful use case" in the documentation would be great. Yes, there is the example of code (which of course does not mention that you need to set the id of Group of security for most of them to work), but the code example is not really tell you why and what each of the attributes you can set with her (for the API set for example) will actually... For example the documentation does not really that many fields are not yet used, and even if the values are the exact opposite of what you would think they would be.

So, my immediate question:

What API will allow me to have users exported with a workspace to use applications that are authenticated in a single installation of runtime?

And my follow-up question (s):

You can actually use the API defined to manage a runtime environment and is at - it a good resource that explains the how and why rather than just the choice of the API.

Well, after a lot of trying things, I finally had things to work.

It seems that export and import a workspace "expires" users to your workspace. Despite the fact that, in the development environment / the ACCOUNT_EXPIRY (which is a date) has a whole bunch of different values and seems to work perfectly, when you import a workspace that the ACCOUNT_EXPIRY column is ready on the date you did import previous internal enforcement. For some reason, this is an indication that your account has expired at the time when you look at the WWV_FLOW_USERS table. Not one of the columns expected, but on the contrary this date column...

So let's take a look at the [url http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_util.htm#autoId126]Unexpire account of the workspace of the documentation procedure:]

UNEXPIRE_WORKSPACE_ACCOUNT Procedure

Unexpires developer and workspace administrator accounts and the associated passwords, enabling the developer or administrator to log in to a workspace.

Syntax

APEX_UTIL.UNEXPIRE_WORKSPACE_ACCOUNT (
    p_user_name IN VARCHAR2);

Parameters

Table 21-107 describes the parameters available in the UNEXPIRE_WORKSPACE_ACCOUNT procedure.

Table 21-107 UNEXPIRE_WORKSPACE_ACCOUNT Parameters
Parameter           Description

p_user_name  The user name of the user account

Example

The following example shows how to use the UNEXPIRE_WORKSPACE_ACCOUNT procedure. Use this procedure to renew (unexpire) an Application Express workspace administrator account in the current workspace. This action specifically renews the account for use by developers or administrators to login to a workspace and may also renew the account for its use by end users to authenticate to developed applications.

This procedure must be run by a user having administration privileges in the current workspace.

BEGIN
    FOR c1 IN (select user_name from wwv_flow_users) loop
        APEX_UTIL.UNEXPIRE_WORKSPACE_ACCOUNT(p_user_name => c1.user_name);
        htp.p('Workspace Account:'||c1.user_name||' is now valid.');
    END LOOP;
END;   

See Also:
"EXPIRE_WORKSPACE_ACCOUNT Procedure" and "WORKSPACE_ACCOUNT_DAYS_LEFT Function"

It's very nice and all, but there are some things missing in the example above:

(1) you must call the procedure of apex_util.set_security_group_id with the ID of the workspace you want to unexpire accounts.
(2) you will need to issue a COMMIT for steps to engage the unexpire.

Question: How are you supposed to know you need to do the above two steps?

Take a look at what the API documentation has for the description of the SET_SECURITY_GROUP_ID procedure:

SET_SECURITY_GROUP_ID Procedure
Use this procedure with apex_util.find_security_group_id to ease the use of the mail package in batch mode. This procedure is especially useful when a schema is associated with more than one workspace. For example, you might want to create a procedure that is run by a nightly job to email all outstanding tasks.

Note that there is no mention that you will need to call the SET_SECURITY_GROUP_ID procedure for almost all other API calls in the APEX_UTIL package (or at least many of them)...

Tags: Database

Similar Questions

  • APEX 3.2 error upgrading of Runtime Environment

    After successfully after improved our development of 3.1.2 to 3.2 environment did us a upgrade of our production environment where only a runtime environment is installed.
    The statement was made following the documentation for installation/upgrade of the APEX
    SELECT * 
      FROM apex_030200.wwv_flow_upgrade_progress
     WHERE upgrade_error IS NOT NULL
    ;
    The result was the following:
    UPGRADE_ID UPGRADE_ UPGRADE_SEQUENCE UPGRADE ACTION UPGRADE_ERROR                                                         UPGRADE_COMMAND
    ---------- -------- ---------------- -------------- --------------------------------------------------------------------- ------------------------------------------------------------------
             1 19.03.09              704 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_PROJECTS to public
             1 19.03.09              705 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_ACC_PROJECTS to public
             1 19.03.09              706 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_ACC_TABLES to public
             1 19.03.09              707 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_ACC_FORMS to public
             1 19.03.09              708 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_ACC_RPTS to public
             1 19.03.09              709 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_ACC_QUERIES to public
             1 19.03.09              710 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_REV_FORMS to public
             1 19.03.09              711 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_REV_RPTS to public
             1 19.03.09              712 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_REV_QUERIES to public
             1 19.03.09              713 error on grant ORA-04042: procedure,function,package, or package body does not exist grant execute on APEX_030200.APEX_MIGRATION_REV_TABLES to public
    Since there was no error in the table when we went to our development environment, I have reviewed the install scripts.
    The first glance the ORA is a bit confusing because the objects are procedures, functions, packages or package bodies but views.
    These views are created only during the installation/upgrade a development environment.

    After you have selected the dba_registry
    SELECT version
         , status 
      FROM DBA_REGISTRY
     WHERE comp_id = 'APEX'
    ;
    the view of the dictionary said a valid installation of APEX. So I guess it's just a small bug with the runtime environment upgrade that could be ignored.

    Anyone have the same experiences during the upgrade of its execution environment?

    Big names

    Andreas

    Hi Andreas,

    Thank you for bringing This problem to our attention. As you said, this is a minor bug with an upgrade of the runtime environment and errors can be ignored.

    Mistakes refer to views that are not created during the installation/upgrade a runtime environment. The point of view of the Migration of applications are not part of a runtime installation, and that's why these errors should not be in the APEX_030200.wwv_flow_upgrade_progress table. Bug 8351256 has been noted to follow up this issue.

    Kind regards
    Hilary

  • Is there real problems leaving the production as a 'full of APEX development environment?

    Hello

    We have recently installed APEX (5) in our production and Test environments.  We have not all applications running in Production at the moment.  Looking through the documentation I've learned that you can configure an instance of the APEX "APEX full development environment" or a "APEX Runtime Environment" and you can switch between the two through scripting.

    It is recommended to set your runtime production environment.  However when you do this you will lose access to admin functions.  My questions are:

    (1) if we look / account ADMIN secure as well as all users in our application workspace, is so no REAL question simply letting PROD as development environment?

    (2) If you make your Production environment, a runtime environment, it seems that you can import only new applications via the SQL script.  What happens when you export out of your Test instance and it has an application ID that is already used in the Production environment?  When you import forward, it lets create you a new application ID instead of using the existing one.  I fear that the admins will accidentally overwrite an existing application if they import via the script.

    You can keep the Apex Builder in production. Indeed, it gives you a lot of additional options.

    Ask the administrator to disable all accounts developer of workspace in the production environment, however.

    Also, export the applications run only, not run & Build. It gives a little extra coverage.

    When you import forward, it lets create you a new application ID instead of using the existing one.

    It would be bad practice. You would create a nightmare of versioning IMHO. What happens if you get an error of production application ID 1231, page 21, which is the application ID 132, page 21 in development? How can you know which application is which?

  • How to install APEX as runtime environment

    Hello

    I just wanted to know if I can create a new configuration just like APEX "Runtime Environment".  Or I need to first install as complete development environment and then convert it into "Runtime"?

    Thank you

    -Anand

    Hi Anand,

    You can directly install apex as "Runtime Environment".

    Check the Doc online: https://docs.oracle.com/cd/E37097_01/install.42/e35123/otn_install.htm#HTMIG391

    Complete development environment. Run apexins.sql from the following four arguments in the order shown:

    @apexins.sql tablespace_apex tablespace_files tablespace_temp images

    Example: @apexins.sql SYSAUX SYSAUX TEMP is

    Runtime environment . Run apxrtins.sql passing the following arguments in the following order:

    @apxrtins.sql tablespace_apex tablespace_files tablespace_temp images

    Example: @apxrtins.sql SYSAUX SYSAUX TEMP is


    For installing the Runtime, you will need to runapxrtins.sql instead of apxrtins.sql instead of apxrtins.sql instead of apxrtins.sql instead of apexins.sql

    All other steps after this are same.

    Hope this helps you,

    Regards,

    Jitendra

  • Runtime Environment only APEX increases performance?

    Hello

    Does anyone know if a the APEX runtime environment increases performance over a full access to developer environment? I read everywhere it increases security but is nowhere specified whether it increases performance.

    From my point of view, its nonesense to store all the activity information that are shown via internal or the development of accounts when you're not using it anywhere. Do you know if the development team has thought of this option?

    Thank you

    Hello

    There will be no difference in performance. A runtime environment only removes just all packets are not used to reduce the possible attack surface.

    On the activity log. There may be not a user interface to see them, but you can query the APEX_WORKSPACE_ACTIVITY_LOG Dictionary view and display them in your own admin applications. Or use the automatic batch display to notify you automatically if the response time of page for pages is unacceptable slow...

    But basically it's you if you want to save this information. Fair value the application "Logging" attribute and the application no longer to record this statistic.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • XLIFF file format and use with JAVA API

    Hello

    We use BEEP version 5.6.3 in Oracle Applications 11.5.10.2 and we are developing some reports to be translated into 10 different languages. We are therefore very interested in XLIFF files but have some questions about the file format and the use of the JAVA API

    (A) FILE FORMAT
    Accuracy: we generate the XLF file in menu add-on BEEP in Winword MS used to build the RTF model
    (A - 1), the generated XLF file begins with:
    <? XML version = "1.0" encoding = "utf - 8"? >
    Can we change encoding to "ISO-8859-1' as soon as convert us the file format?

    A-2) section he < header > < skl > < file > internal - contains a huge chain that seeem to be binary... What is c? can delete us it?

    A-3) can you have a file XLF muliple < file > sections (one for each language translation)?
    This can be very useful for us to manage a translation only by a report model file.

    A-4) the most important section for translation is included in the tag < trans-unit >.
    Each of them has a separate as id "49e41f8f" '... '. Can we replace that with a larger significance?

    (A - 5) in the format of language is as "en-US" (area code + language code).
    It is case sensitive?

    (* B) THE USE OF XLIFF FILES WITH JAVA APIS *.
    We use the OPE "FOProcessor" class to generate the PDF providing:
    -Data generated by SQL report XML file
    -File XSL - FO, generated from the module BEEP in MS WINWORD RTF model
    -XLIFF file generated from RTF model by the module BEEP in MS WINWORD
    -The XLIFF file contains a file entry to translate the form English to French
    < file source = target language language "en-US" = "en - US" datatype = "OPE" original = "orphan.xlf" product-version = "orphan.xlf" - name of the product ="" > "

    Here is a summary of our java implementation class:

    Processor FOProcessor = new FOProcessor();
    processor.setData (sXmlDataFilepath);
    processor.setTemplate (sXslTemplateFilepath);
    processor.setOutput (sPdfOutputFilepath);
    processor.setOutputFormat (FOProcessor.FORMAT_PDF);
    processor.setLocale ("en - US");
    xInputXlfLang = new FileInputStream (sXlfLangFilepath);
    processor.setXLIFF (xInputXlfLang);
    try {}
    Processor.Generate ();
    }
    {} catch (XDOException e)
    e.printStackTrace ();
    }


    (variables beginning with "s" are path + names passed as arguments)


    The output PDF file is well generated, but not translated in French!

    (1) I missed something?
    What is wrong in my code or my XLIFF file?
    Y at - it a parameter to pass to allow the XLIFF translation (via setConfig)?
    With "setLocale" we indicate the target language, but how BEEP knows this current language is "en-US"?

    I found a few posts on the subject, but none with a clear solution. So if I managed to solve this problem, I think it can be very useful for many developers.

    Thanks in advance for your help.
    K.Helali

    Edited by: K.Helali Apr 26. 2010 01:56

    Hey,.

    I know what you're talking about.

    Do not make the rtf-> xsl in the office.

    Do it in java code.

    Use RTFprocessor, for her, just set the model and set the true extractxliff.

    move the xsl foprocessor.

    to do this

    (1) in the BEEP for MS Word
    1 - a) build the RTF model
    1-c) extract texts translateable to the XLF file

    (2) in BEEP Server (Linux Redhat, BEEP 5.6.3) included with the Oracle Applications 11.5.102
    (2 - a) write a java class that implements class FOProcessor (see code in my first post)
    I'm passing to the FOProcessor class
    -XML data file
    model model XSL - export RTF, file to the XSL using RTFprocessor file save it sub - (here in rtfprocessor.setextractXlifff - true)
    http://download.Oracle.com/docs/CD/E10415_01/doc/bi.1013/e12693/Oracle/Apps/XDO/template/RTFProcessor.html
    -Translation (via the FOProcessor.setXLIFF method) XLF file

  • SQLite Manager does not work with the v11. Until make you it easier to go back to older versions or newer versions stop, breaking most of the modules I won't use Firefox

    SQLite Manager does not work with the v11. Until that make it easier to return to older versions or newer versions stop, breaking most of the modules I use FirefoxHow to come back at 10 Firefox?

    Update Firefox 23.0 which published yesterday afternoon.

  • Portege R500 - TrueSuite Access manager does not work with IE 8

    TrueSuite Access Manager does not work with Internet Explorer 8

    Version:
    Internet Explorer: 8.0.6001.18702
    TrueSuite Access Manager 2.1.23.0

    Any idea?

    Thankx
    Robert

    Hello!

    Which laptop computer and operating system you have?
    And what do you mean with it doesn t work? You get an error message or something else?

    You must give us a little more information. Otherwise, we can t help you my friend.

    Good bye

  • Open different files to workspace with VeriStand API

    Hello, I have a question about the API VeriStand using LabVIEW. LabView is able to open a specific project of VS; now, I mean VS to open the same project file with a file from another workspace (.nivsscreen) similar like the box below, but with the API:

    I want to do this is because I want to open different files, workspace according to the connected equipment.

    Is there an API function to do this?

    Thank you, Michael

    There is not an API to directly modify the screen workspace or ask running workspace to load a particular screen.

    I think going that you can accomplish what you want, leaving to know the definition of deployed system but by program by selecting different workspaces to display via the API. It is a small roundabout and there are a few quirks of cosmetics that I mention below, but it's probably worth a look. I am attaching an example below, you can play.

    The main idea is to create a system definition file, and then create several separate project VeriStand files which all related to the same system definition. You can do this in the dialog box create a new project by selecting the tab system definition to use a definition from existing system rather than create a new one. For each project you create, modify the file to corresponding workspace screens for some display you like.

    Once you have done this, use execution > Workspace screws to deploy by programming the system definition file. It is important that do you rather than deploy the system through the project definition file, as I'll explain below. Then, you can take advantage of the project API screw for programmically load and close projects, as well as launch and close the workspace for this project. To view a particular workspace, just close the current project (if it is open) and load the project associated with this workspace. Then ask this project to open his window to the workspace.

    The key thing to note here is that if a project load and it detects that VeriStand bridge is already linked to its definition of linked system, it will just adopt that opens the connection. In addition, if the project is closed, it will NOT cancel the deployment of this system gateway definition connection, because it doesn't have to deploy it in the first place.

    See the example below. Just unzip all the files in the same folder and open the Automator.vi workspace. Make sure VeriStand is open before you run this VI.

    Known issues: when you switch workspaces in this example, you are in fact a project of closing and opening another. Therefore, the window began to do can do appear briefly.

  • Definition of the parameters of the VI in LabView Action Module with TestStand API

    I started playing with the API, TestStand, and I have questions on how to configure a TSAdp.LabViewModule.

    I use a few examples of NOR and the community of developers to get started:
    http://www.NI.com/example/30263/en/
    https://decibel.NI.com/content/docs/doc-18401

    These examples work as I expect and I understand them.  I am struggling with how to specify VI parameter values in the module when the step type is 'Action '.  In other words, how to set these parameters?

    All the examples I see use of step types that have defined fields, which are accessible through the API with 'AsPropertyObject '.  The action type, by default, has the result field.

    Set the values of the parameters of a VI with the API TestSTand?  If so, how?

    Thank you

    Jacob

    Well, I thought about it on my own so I figure I'd share the solution:

  • looking at my pictures in windows live, they have a yellow tent their when I switch to Office Picture Manager pictures is clean with the right colors

    looking at my pictures in windows live, they have a yellow tent their when I switch to Office Picture Manager pictures is clean with the right colors

    Hello

    Thanks for posting this question in the Microsoft Community Forums.

    I see that there is a yellow tint to the photo in Windows Live Mail.

    Let us work together to solve this problem.

    However, we need more information. Please answer these questions so that we can better understand the issue.

    1. this happens with a particular photo?

    2 what is the size of the photo?

    Please send us the screenshot of the photo with the yellow tint.

    Follow the link below to find out how to upload files to SkyDrive.
    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

    I ask you to do the following troubleshooter.

    Fixed problems with Windows Live Photo Gallery that does not
    http://support.Microsoft.com/mats/windows_photo_and_slideshow_diag/

    Please get back to us with the results.

    If you continue to deal with this problem, please contact Windows Live at the following link:

    If you have questions about Windows operating systems, please contact us on this forum. We are happy to help you.

  • Password Manager is not initialized with IE 7.0

    Hello

    I have a Lenovo T61 running on XP SP2 and Client Security Solution version 8.21.0006

    Password Manager worked very well with IE 7.0 until I install a dictionary on line and started to initialize when web sites visited, where the password manager should appear and enter the password.

    I tried to/impossible to activate the option: tab, internet options, under the heading advanced navigation "enable third party browser extensions", but still I can't get this to work.

    I tested with other applications apart from IE 7 and password manager is displayed correctly.

    Do you have any suggestions on how to proceed in order to make the PM to work under IE 7?

    Thank you.

    Hello

    the solution was to repair the installation of software in Add or remove programs. (Also make sure that in internet options to turn them on third party extensions browser is marked.

    After the computer restarts, it works perfectly.

    Hope this can help anyonme with the same problems.

    Kind regards.

  • Content Plazmic could communicate with RIM API?

    I had this problem for a long time and not been resolved.  Hope I can get the result here.

    When you use Plazmic composer, we can create image with some actions or events. But will this .pme file to communicate with RIM API?

    for example, I want to show weather picture of today. This image should include the weather icon and the degree.

    Suppose we use a composer to create this image. Because the degree is dynamic and changing. Is that possible for content plazmic degree as a parameter entry and automatically generate the images.

    It's like the RIM API, we create a screen, add this mediaPlayer with .pme file in this form. Then we have a logic to get data weather degree and put in mediaPlayer and leave it to view the .pme file, which will be the image of time with the icon and the degree.

    Content Plazmic is static in Java applications.  He can't interact with the application (fire events) or y at - it APIs to modify the content.

    If you are looking for to use on a web site and to create dynamic content for the BlackBerry browser, it is possible.  You can export your Plazmic composer in SVG content.  It is an XML file that you can then use as the basis for a dynamic page.

    Version 4.6.0 of the BlackBerry API set also has support for SVG display.  So you could create the dynamic content using these methods, however please note that this requires BlackBerry handheld software version 4.6.0 or higher.

  • Can I manage a Mysql database with dreamweaver CC? Comment if so?

    Can I manage a Mysql database with dreamweaver CC? Comment if so?

    For example, I prepare a registration page and then I can't find how to connect MySQL database in dreamweaver CC pour it works.

    How does it do?

    1. download a new extension manager for CC.  Here is a list of 3, all free.

    Anastasiy extensions Manager

    http://install.anastasiy.com/

    The seven extensions of the project manager

    http://www.Projectseven.com/extensions/

    The DMX Zone extensions Manager

    http://www.DMXzone.com/go/22670/DMXzone-extension-manager-for-Dreamweaver

    ============================

    2. download the Extension of obsolete DMX Zone Server Behaviors panel

    http://www.DMXzone.com/go/21842/enable-server-behaviors-and-data-bindings-panel-support-fo r-dreamweaver-cc.

    ============================

    3. replace the obsolete server with a modern commercial extension behaviors:

    http://www.WebAssist.com/Dreamweaver-extensions/mysqli

    Nancy O.

  • The difficulty to remove the transitions with the api

    Hi friendly friends from Adobe.

    I can't remove transitions with the api for creating. I use QE, (simplified loop) thusly:

    app.enableQE ();

    qe.project.getActiveSequence () .getVideoTrackAt (0) .getTransitionAt (0) .remove)

    ... and it works, but there is a leak memory, so I can't run the script twice. I chatted to bbb_999 offline & he suggested that I do not use QE, so now I have this:

    App.Project.sequences [0] .videoTracks [0] .transitions [0]. Unbind (true)

    ... that returns Undefined, and the transition is not removed. I think that I am not by the way of the correct setting in the unbind method. Any help would be appreciated!

    As a matter side: How can I find the list of arguments for methods, because there is no documentation? I get pretty exhausted DOM ExtendScript Toolkit of navigation and then guess what might be the method arguments.

    See you soon,.

    Raphael

    The first method is the right one; Unbind() does not remove a transition. What is the problem of leak memory that you meet?

    > How can I find the list of arguments for methods, because there is no documentation?

    Look in PProPanel and if its use is not exercised here, ask.

    While some screen movie tutorials are being developed, no additional documentation is currently scheduled. If all goes well, a comforting thought; There are > 140 panels in the wild, and none of them had more documentation do you.

Maybe you are looking for

  • Thunderbird crashes when I try to delete the mail. I have a lot of disk space.

    Thunderbird crashes when I delete mail. It is said that he can not compact messages in the trash. He also says check disk space. I have a lot of disk space.

  • Presario f740 EF: zvuk

    Dobry den MAM jeden problemy dva is tyka zvuku a u character zvuku mam cerveny krizek ze a napis NENI NAINSTALOVANO ZADNE VYSTUPNI ZVUKOVE ZARIZENI ovladace zvuku jsem stahl z HP I for conexant an installation mi napise k tomu ovladaci neni zadne zvu

  • Loading Windows XP on Satellite A200

    Hi all Because of a defective HARD drive, I had to move away from my Vista Home (disk recovery only) and go into Windows XP. I have trouble getting my video card drivers updated. I have a NVIDIA GeForce Go 7300.I tried multiple copies of the drivers

  • entering data in the table of clusters

    Hi guys. I have 2 table of the clusters tab. My cluster have elements of different types. I need get referance data entry. I can do it for a whole picture about the structure of dynamic event but cannot do it for others. My vi as an attachment. Can s

  • NI-VISA licensing policy

    Hello I would use NI-VISA for my current project, but I'm a bit confused when it comes to licensing policy. Please help me determine whether or not I have to acquire developer NI-VISA and/or deployment license. In my scenario, I need to write an appl