What is the best way to navigate through an actionscript swf using arrows?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

set the tabIndex property of the TextInput. That should allow you to tab through the form.

It is inadvisable to override the default functionality for arrow keys because they are used to move the text insertion point within the textInput

As for enter, you'll have to listen for the keyUp event and, if you detect an enter key, move to the next field.

//add this eventlistener for each textbox (through a loop or manually)
t.addEventListener(KeyboardEvent.KEY_UP, k);

//The event handler
protected function k(e:KeyboardEvent):void {
    if(e.keyCode==Keyboard.ENTER) {
         focusManager.getNextFocusManagerComponent().setFocus();
    }
}

EDIT

For Flash CS5, this code should work:

import flash.events.KeyboardEvent;
import fl.managers.FocusManager; 
import flash.display.InteractiveObject; 
import fl.managers.IFocusManagerComponent;
import fl.managers.IFocusManager;

t1.addEventListener(KeyboardEvent.KEY_UP, k);
t1.tabIndex=1;
t2.tabIndex=2;

var fm:FocusManager=new FocusManager(this);

t1.tabEnabled=true;
t2.tabEnabled=true;

function k(e:KeyboardEvent):void {
    if(e.keyCode==Keyboard.ENTER) {
         var fx:InteractiveObject = fm.getNextFocusManagerComponent();
         fm.setFocus(fx);
    }
}

important: first drag a component from the "User Interface" group onto the stage and delete it. This should put all the required components in the library ready for you to use

EDIT2

Change

for(var i:int=0; i < textbox.length; i++) {
        //textbox[i].buttonMode = true;
        //box[i].addEventListener(MouseEvent.CLICK, myclick_ftn);
        //box[i].addEventListener(FocusEvent.FOCUS_IN,textInputHandler);
        //box[i].addEventListener(FocusEvent.FOCUS_OUT,textInputHandlerOut);
        textbox[i].restrict = "0-9";
        textbox[i].addEventListener(KeyboardEvent.KEY_UP, k);
        textbox[i].tabIndex=i;
        //t2.tabIndex=2;

        //textbox[i].tabEnabled=true;

                var fm:FocusManager=new FocusManager(this);


        function k(e:KeyboardEvent):void {
            if(e.keyCode==Keyboard.ENTER) {
                var fx:InteractiveObject = fm.getNextFocusManagerComponent();
                fm.setFocus(fx);
    }
}
        //t2.tabEnabled=true;
}

in your code to this:

var fm:FocusManager=new FocusManager(this);


function k(e:KeyboardEvent):void {
    if(e.keyCode==Keyboard.ENTER) {
        var fx:InteractiveObject = fm.getNextFocusManagerComponent();
        fm.setFocus(fx);
    }
}

for(var i:int=0; i < textbox.length; i++) {
        //textbox[i].buttonMode = true;
        //box[i].addEventListener(MouseEvent.CLICK, myclick_ftn);
        //box[i].addEventListener(FocusEvent.FOCUS_IN,textInputHandler);
        //box[i].addEventListener(FocusEvent.FOCUS_OUT,textInputHandlerOut);
        textbox[i].restrict = "0-9";
        textbox[i].addEventListener(KeyboardEvent.KEY_UP, k);
        textbox[i].tabIndex=i;
        //t2.tabIndex=2;

        //textbox[i].tabEnabled=true; 

}
link|improve this answer
Thank you so much! I am using textboxs that are set to input, not components so I am having errors with the 40 textboxs. any suggestions? – asgurl Oct 21 '11 at 13:43
I've edited my answer, check it out @asgurl – Pranav Hosangadi Oct 21 '11 at 14:13
your so awesome! one last question I hope, what should t2 be referring to? and sadly im using CS4 :( – asgurl Oct 21 '11 at 14:25
oh... t1, t2 and so on are the instance names of the text fields you have.. You might want to loop over the array and set tabEnabled=true and tabindex=whatever – Pranav Hosangadi Oct 21 '11 at 14:26
on second thought, setting tabEnabled isn't really required – Pranav Hosangadi Oct 21 '11 at 14:28
show 18 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.