QUOTE(Matt Kasper @ 20 Jul, 2002 - 06:42 PM)

Ok, I have this flash form setup, but when I goto tab from field to field, it trys to tab to buttons or other stuff on the page such as the url bar and junk. I was wondering if flash can somehow capture the tabs and move it to the next field in the form rather then to a button or something. No idea how to do this. Thanks in advance.
Matt Kasper
I can see this question has been up for quite a long time now but I'm sure there are many people like myself looking for the answer to this, and the SIMPLEST way to sort your tabbing is this:
CODE
textField1.tabIndex = 1;
textField2.tabIndex = 2;
textField3.tabIndex = 3;
textField4.tabIndex = 4;
textField5.tabIndex = 5;
Where textFieldx is the text field you want to tab to.