Tab Order

I’m playing around w/ making a guestbook in Flash.

www.jlcreationsonline.com/phpstuff/guestbook.html

If you put your cursor in Name, and then tab through, it doesn’t exactly go in logical order. I’m wondering if there is an easy way to fix this, or if i have to rearrange all my text boxes into an order so that it does.

try
[AS]
// root timeline
yourField1.onLoad = function () {
this.tabIndex = 0;
}
yourField2.onLoad = function () {
this.tabIndex = 1;
}

// or on the button
on (load) {
this.tabIndex = 0;
}

[/AS]