How to make reference to the start state?

Hello!

I have two States in my Application: Start (State of Base) and connected (defined by myself).

When I put the Application.application.setCurrentState ("logged") I put the State connected, but if I try:

Application.application.setCurrentState ("start") that it does not work.

How can I make reference to the start state?

Thank you very much

Hello

To refer to the use of the base state:

currentState = ";

Kind regards

Ivan Alexander PMP

SR Application engineer.

FlexAppsStore.com

Tags: Flex

Similar Questions

  • Apex 4.0: In the form of table: how to make reference to the elements?

    Hello
    I have a tabular layout with a certain query. A column in the query (say comm, is not displayed. This column is required in the table

    When a new row is added in the form of tables, I want to add a (complex) value for this column hidden by default.

    I want to add a process (before submitting) to the page.
    How can I make reference to this particular point?


    : P23_COMM: =...

    does not work. It is a column in the query, not a page element.

    Any help appreciated.
    Sincere friendships Erik

    Loop over the hidden PK table, identification of the new line (by finding with PK NULL table th eone) and assign the hidden item corresponding

    Assumung 01 is the primary key column table (use firebug to check this) and 05 is the hidden field

    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_F01.COUNT
      LOOP
         --Identify new rows
          IF ( APEX_APPLICATION.G_F01(i) IS NULL ) THEN
              APEX_APPLICATION.G_F05(i)  := 
          END IF;
      END LOOP;
    END;
    
  • How to make reference to the multidimensional array element?

    What should I change in the next statement in the dbms_output to display 'Ken' and avoid the error?

    Thank you
    -Ken
    create or replace type kja_person_name_rec as object
    ( pena_id number(10)
    , pers_id number(10)
    , pnty_cd varchar2(10)
    , first_nm varchar2(100)
    , family_nm varchar2(100)
    );
    /
     
    Type created
    create or replace type kja_person_name_tbl as table of kja_person_name_rec not null;
    /
     
    Type created
    create or replace type kja_person_rec as object
    ( pers_id number(10)
    , birth_dt date
    , person_names kja_person_name_tbl
    );
    /
     
    Type created
    create or replace type kja_person_tbl as table of kja_person_rec not null;
    /
     
    Type created
    declare
      l_person_name  kja_person_name_rec;
      l_person_names kja_person_name_tbl;
      l_person       kja_person_rec;
      l_persons      kja_person_tbl;
    begin
      l_person_name  := kja_person_name_rec( 1, 1, 'LEGAL', 'Ken', 'Anderson');
      l_person_names := kja_person_name_tbl( l_person_name);
      l_person       := kja_person_rec( 1, to_date( '1955-SEP-22', 'YYYY-MON-DD'), l_person_names);
      l_persons      := kja_person_tbl( l_person);
     
      dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names.first_nm);
    end;
    /
     
    declare
      l_person_name  kja_person_name_rec;
      l_person_names kja_person_name_tbl;
      l_person       kja_person_rec;
      l_persons      kja_person_tbl;
    begin
      l_person_name  := kja_person_name_rec( 1, 1, 'LEGAL', 'Ken', 'Anderson');
      l_person_names := kja_person_name_tbl( l_person_name);
      l_person       := kja_person_rec( 1, to_date( '1955-SEP-22', 'YYYY-MON-DD'), l_person_names);
      l_persons      := kja_person_tbl( l_person);
    
      dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names.first_nm);
    end;
     
    ORA-06550: line 13, column 80:
    PLS-00302: component 'FIRST_NM' must be declared
    ORA-06550: line 13, column 3:
    PL/SQL: Statement ignored
     
    SQL> 

    Hello

    Ken Anderson says:
    What should I change in the next statement in the dbms_output to display 'Ken' and avoid the error?

    Thank you
    -Ken

    create or replace type kja_person_name_rec as object
    ( pena_id number(10)
    , pers_id number(10)
    , pnty_cd varchar2(10)
    , first_nm varchar2(100)
    , family_nm varchar2(100)
    );
    /
    
    Type created
    create or replace type kja_person_name_tbl as table of kja_person_name_rec not null;
    /
    
    Type created
    create or replace type kja_person_rec as object
    ( pers_id number(10)
    , birth_dt date
    , person_names kja_person_name_tbl
    );
    /
    
    Type created
    create or replace type kja_person_tbl as table of kja_person_rec not null;
    /
    
    Type created
    declare
    l_person_name  kja_person_name_rec;
    l_person_names kja_person_name_tbl;
    l_person       kja_person_rec;
    l_persons      kja_person_tbl;
    begin
    l_person_name  := kja_person_name_rec( 1, 1, 'LEGAL', 'Ken', 'Anderson');
    l_person_names := kja_person_name_tbl( l_person_name);
    l_person       := kja_person_rec( 1, to_date( '1955-SEP-22', 'YYYY-MON-DD'), l_person_names);
    l_persons      := kja_person_tbl( l_person);
    
    dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names.first_nm);
    end;
    /
    
    declare
    l_person_name  kja_person_name_rec;
    l_person_names kja_person_name_tbl;
    l_person       kja_person_rec;
    l_persons      kja_person_tbl;
    begin
    l_person_name  := kja_person_name_rec( 1, 1, 'LEGAL', 'Ken', 'Anderson');
    l_person_names := kja_person_name_tbl( l_person_name);
    l_person       := kja_person_rec( 1, to_date( '1955-SEP-22', 'YYYY-MON-DD'), l_person_names);
    l_persons      := kja_person_tbl( l_person);
    
    dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names.first_nm);
    end;
    
    ORA-06550: line 13, column 80:
    PLS-00302: component 'FIRST_NM' must be declared
    ORA-06550: line 13, column 3:
    PL/SQL: Statement ignored
    
    SQL> 
    

    L_persons (1) .person_names is a kja_person_name_tbl. Kja_person_name_tbls is not first_nms; only kja_person_name_recs do.
    Near the end, instead of

       dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names.first_nm);
    

    Try

    dbms_output.put_line( 'l_persons(1).first_nm = '|| l_persons(1).person_names(1).first_nm);
    --                                                                   added  ^^^
    
  • How to make reference to the external SWF file using if statement?

    I have a main swf file that loads several external SWF file when the user clicks a menu button. Now I want to target a specific swf file to Add an extra library child or of another swf when this specific swf file is loaded. How should I do? What should I put in the stated case?

    ///////////////////////////////////////////////////////////

    var newswf:URLRequest = new URLRequest (".") ("/ swf /" + event.target.name + ".swf");

    Loader.Load (newswf);

    addChild (loader); dynamically load SWFs

    If (newswf == ".") ("/ SWF/pubResCHETNA.swf ') //error here

    {

    FC.buttonMode = true;

    FC.addEventListener (MouseEvent.CLICK, full screen);

    }

    function fullScreen(e:MouseEvent):void

    {

    var loaderF:Loader = new Loader();

    loaderF.load (new URLRequest ("PopupFullscreen.swf"));

    addChild (loaderF);

    }

    ////////////////////////////////////////////////////////

    The State must be newswf.url == the path. However I store event.target.name as a variable and use it in the State. You use "." for your path so the condition probably will always fail.

    --

    Kenneth Kawamoto

    http://www.materiaprima.co.UK/

  • How to make reference to the cantainer object

    Is there a way to refer to the object and other assets based on the position of the target

    var movies:Array = new Array({btn:btn_1,url:"cico.swf"},{btn:btn_2,url:"ianEastwood.swf"});
    
    for (var g:Number = 0; g< btns.length; g++) {
         movies[g].btn.addEventListener(MouseEvent.CLICK, menuClick);
    }
    
    function menuClick(evt:MouseEvent):void {
      eg.      trace(  (evt.target).container Object()    );
         
         
      eg.     trace(    ( (evt.target).cantainer  Object() ).url   );
    
    
    
    Ultimately this is what i want
    var ind:Number = movies.indexOf(the object in the array);
    trace (ind); // should be a number 
    
    
    
    }
    
    
    

    No object btn consists in movies.  It contains objects that contain objects btn.

    use:

    function menuClick(evt:MouseEvent):void {}

    for (var i: uint = 0; i<>

    {if (movies [i]. BTN is evt.currentTarget)}

    trace (i);

    breaking

    }

    }

    }

  • Toshiba satellite L755-S5170 how to recover out of the box state

    How to get out of the box state. I know that it will not be that difficult, I had products HP which makes this task easier!

    Moved to windows

    Hello

    Regarding your question, it is out of our reach and you can contact your computer manufacturer.

    Thank you.

  • How to make connections on the outputs of the letter of wsn 3202?

    GOOG morning engineers,

    How to make connections on the outputs of the letter of wsn 3202?

    Sorry, I'm very confused by your response.

    You must not something on the power set by program, just connect a power supply to DIO power and mass of DIO.  Then your DIO lines should be able to output values.

    In addition, I think that you may need to configure the output line.  This would be by the project.  I don't remember what it is, but it should be in some menu properties (probably for the specific line of DIO).

  • How to add programs to the start of the file using Vista

    How to add programs to the start of the file using Vista

    Hi Harry,.

    Oddly enough, you can actually do it in msconfig except if it is already there and simply not checked as opposed to not being do not at all (although you would think that they would understand this option).

    The easiest way is to add the program (or a shortcut to the program) in the folder all Menu Programs Startup.   Here is the procedure: http://www.ehow.com/how_5098465_add-startup-programs.html.  Remember, to do this, you must either a shortcut existing (perhaps on the desktop or elsewhere in the menu all programs) or you need to find the source file (probably somewhere in C:\Program Files depending on what you want to add) and either copy it and add it to the startup folder or right-click on it and create a shortcut to copy into the startup folder.  Once you reboot, this program starts during the initial commissioning process and you will now be able to control using msconfig.exe, if you wish.

    Another option is to do this by using the registry editor.  If you decide to try this, first create a restore AND system restoration point backup of the registry before you begin.  Here is the procedure: http://www.ehow.com/how_7304438_add-program-msconfig-regedit.html.  I recommend to use this ONLY if the previous procedure does not work for some reason any as long as that the procedure is simpler and safer.

    If you want a simpler way to manage and control startup programs, you can try it free WinPatrol http://www.winpatrol.com/download.html that change monitors for startup programs if you set it to run in real-time so that you know when to try new programs are added to your Start menu and, for the purposes of this question includes an Add button which opens a link to a window of Windows Explorer where you can browse the program you want to add, click open to select and then add it directly to the commissioning.  If you prefer it does not work all the time, you can simply uncheck the box which includes this program and it will work only when you choose to run (but at the start, will work as an indication otherwise or configured).  It will appear not in the start menu in all programs (Finally, WinPatrol is, but not programs, it adds to the start), but it will appear in WinPatrol (which also lets you manage what you want or not start with checkboxes as in msconfig) and sure in msconfig - but only after a reboot is complete the process of adding.

    I hope this helps.  Personally, I use WinPatrol myself and let it run in real time.  Since I do a lot of installations, it helped me often prevent the addition of a startup item I haven't really need and reduces how many times I actually need to check what is happening out there.

    If this answers your question without the need to repost in another forum, please mark it as an answer.  If this isn't the case, then of course you must republish as suggested above.

    Good luck!

  • I downloaded OS Yosemite and threw it on my photoshop 3 - How to make it to the top?

    I downloaded OS Yosemite and threw it on my photoshop 3 - How to make it to the top?

    Assuming you mean ps cs3,

    Downloadalbe installation files available:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

    window using the Lightroom 3 link to see these "important Instructions".

  • How to make reference to a column name in the form report

    Hello
    How can I make reference to a column name in the form report. My problem is that "I have a form report that I have the column name when using click on the column name, it must get to the next page with the corresponding values of the column".

    Here, I realized that when I click on the name of the column (in page 1) it brings me to the next page (page 2). but in the next page (P2) I want to display (display only) the corresponding values of the column (page 1) selected, but the values are not editable and shouldn't be in the text box must be in display area.

    So, how can I write a SQL to display single source field. That is to say, how can I consult report form (page 1) in name column.

    Hello

    If you use the link in the column when you click on the need of the column value, you need to navigate to the next page and all the data accordingly select value here.

    Modify the report form and see the top of the page and click on report attribute.

    So now you have the attributes of the columns is to say what are the columns are available in the reports form.

    Click on change column what you need Ie the column when you click on its passage to the next page this column, for example, as mentioned in the previous post "Empname".

    Check the link column and give perspective of values according to your need and click on apply chages.

    Thank you & best regards
    Srikkanth.M

  • How to make reference to a column name in the domain constraint

    When specify us a constraint check (for SQL Server) in a field, we need to enter an expression in the syntax, for example

    Len (Phone) > 7

    Later, the Modeler will exactly this expression in the SQL code. But it would be wrong as a constraint to refer to a column name in the table (which would not be 'phone').
    So, how to make the data name Modeler to a real column in the constraint domain?

    Hello

    Use the % COLUMN as a placeholder column name - len (%COLUMN%) > 7

    Philippe

  • re installed XP. Which if I understand correctly it breaks the path (links) here, where are the pictures. Photos are still there. How to make to restore the links to the photos are located under my pictures. Thank you

    I have not read method 4 5 methods before re install XP on top of the instalation of gooseberry.  Somehow, I had picked up Paladan or palladium that froze my system and wouldn't let me go unless I bought it.  So I used the recovery disc to repair XP.  Once I did I found that all my photos did not appear in my photos.  I installed Picasa and can send pictures very well.  I would like to get XP to recognize the photos so I can use Outlook to send photos.

    I read a few other posts and wonder why in method 4 to install in a separate folder?

    The installation disc said repair and I just let it go in automatic mode. How does the system decide which version to boot from?  When it is in a different folder with a new name?  Is it the latest version installed to boot from or what.

    Thank you

    Hi Muddlinthru,

    · What article are you talking about for relocation?

    · Where are the photos?

    · You receive an option to select the operating system to load into the start menu?

    Important : reinstall the Windows operating system or upgrade your OS on-site is a troubleshooting step extreme that you should only take if you fully understand the ramifications and risks involved. If you decide to take this step, make sure that you have the original Windows XP media and product installation key provided with your operating system. If you are not comfortable trying to reinstall or to repair the Windows operating system, you can contact the manufacturer of your computer for help or bring your computer to a professional repair shop.

    You can check the link below: how to perform an upgrade on the spot (reinstallation) of Windows XP:http://support.microsoft.com/kb/978788

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to make part of the video in black and white and the other part in color

    Hello

    So I want to make this black and white video, but keep what inside the rearview mirror in color,

    I used the black and white masked effect around the mirror, but the only problem is that the camera then moves the mask b & w started out where I need it.

    can someone help me please on how to keep track on the edges of the mirror through the video clip of 30 seconds or more

    Thank you

    Screen Shot 2016-03-25 at 3.36.21 PM.png

    You don't say which version of the body you use, but in the newer versions, you use these tools to have body follow the matte for you:

    More info here:

    Masking and tracking in Premiere Pro

    MtD

  • How to make CutOperation puts the text cut to the Clipboard?

    I have a class that inherits from the EditManager class and provides these methods:

    public function performCopy():void

    {

    var copyOperation:CopyOperation = new CopyOperation (getSelectionState());

    doOperation (action);

    }

    public function performCut():void

    {

    var textToCut:TextScrap = TextScrap.createTextScrap (getSelectionState());

    var cutOperation:CutOperation = new CutOperation (getSelectionState(), textToCut);

    doOperation (cutOperation);

    }

    PerformCopy works very well and makes the text copied to the Clipboard.

    PerformCut deletes as planned, but don't put it on the Clipboard.

    The documentation for CutOperation says "edit Manager is responsible for copying of the text scrap to the Clipboard. Cancel a cut operation does not restore the original Clipboard State. »

    No idea what I could do wrong?

    Thank you

    Stefan

    You can call TextClipboard.setContents (textScrap) to scrap that you made on the system Clipboard. For an example of how this is done in the TLF, see EditManager.as function editHandler. Note that this can only be done as part of a trial to CUT or COPY, except if you run on AIR (access to the Clipboard is subject to the security sandbox).

    Hope this helps,

    -robin

  • How to make boxes to the letters for my alias iCloud in Mac Mail

    How to make mailboxes mailbox for my alias iCloud in Mac Mail?

    I have just set up my e-mail address of iCloud for the first time.  I had an Apple account for many years, but had not hitherto iCloud email address.  After that, Mac Mail automatically created an Inbox and an Outbox called, "iCloud" in the Mac Mail.

    Following the instructions I found online from Apple, I created an alias.  I would like to create the mailbox for the alias. How can I do this?

    Because it cannot be changed or deleted, I won't use my "main" iCloud address email for anything whatsoever.  Everything will be done by one or two aliases.

    Thank you for helping.

    You can create a folder for iCloud in the same way, when you create folders for any of your e-mail accounts. However, I suspect that you hope to create an Inbox specially for your alias addresses, which you can not do so. Aliases are aliases for your primary address, they are not different addresses, as such mail to your iCloud address and it's aliases are all moving in the same Inbox.

    What you can do is create a folder for mail addressed to your alias and create a rule to move relevant mail in the Inbox in this folder.

Maybe you are looking for