[Flashcoders] RE:[ Flashcoders] Tab Problem

2007-02-07 Thread Vivek Gaikwad
Even if I set the tabIndex through scripting, it doesn't solve the issue. Tab doesn't come on the buttons. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/fla

RE: [Flashcoders] Tab Problem

2007-02-07 Thread Hairy Dog Digital
list Subject: RE: [Flashcoders] Tab Problem Increments are your friend. :) a = 0; tf1.tabIndex = ++a; tf2.tabIndex = ++a; tf3.tabIndex = ++a; btn4.tabIndex = ++a; btn5.tabIndex = ++a; If you had to reorder any of those tab orders all you have to do is cut and paste them into their new position. I

RE: [Flashcoders] Tab Problem

2007-02-07 Thread Andrew Kirkpatrick
> Sent: Wednesday, February 07, 2007 7:48 AM > To: flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] Tab Problem > > Hi all, > > > > I was trying to figure out this: > > > > I have 3 input boxes(component) and 2 buttons created by me on st

RE: [Flashcoders] Tab Problem

2007-02-07 Thread Steven Sacks | BLITZ
Increments are your friend. :) a = 0; tf1.tabIndex = ++a; tf2.tabIndex = ++a; tf3.tabIndex = ++a; btn4.tabIndex = ++a; btn5.tabIndex = ++a; If you had to reorder any of those tab orders all you have to do is cut and paste them into their new position. If you number your tabIndexes specifically

Re: [Flashcoders] Tab Problem

2007-02-07 Thread Omar Fouad
u mean: tf1.tabIndex=1; tf2.tabIndex=2; tf3.tabIndex=3; btn4.tabIndex=4; btn5.tabIndex=5; On 2/7/07, Cay Garrido H. <[EMAIL PROTECTED]> wrote: I haven't used the accesibility panel, I've always done it by code, and it works just fine: tf1.indexTab=1; tf2.indexTab=2; tf3.indexTab=3; btn4.inde

Re: [Flashcoders] Tab Problem

2007-02-07 Thread Cay Garrido H.
I haven't used the accesibility panel, I've always done it by code, and it works just fine: tf1.indexTab=1; tf2.indexTab=2; tf3.indexTab=3; btn4.indexTab=4; btn5.indexTab=5; Vivek Gaikwad escribió: Hi all, I was trying to figure out this: I have 3 input boxes(component) and 2 buttons

[Flashcoders] Tab Problem

2007-02-07 Thread Vivek Gaikwad
Hi all, I was trying to figure out this: I have 3 input boxes(component) and 2 buttons created by me on stage. I have set the tabIndex for all the 5 controls using the accessibility panel. When I publish this, tab seems to stuck between the input boxes, it doesn't come on the buttons.

[Flashcoders] >> Tab Problem with DB ?

2006-02-25 Thread CARABUS plus
Hi http://www.cuisinec.com/monsite/images/index_fr.html I got 2 level : level0 or root where I got dynamic textfields level1 where a movie is loaded There is two textfield at level 1, when I press the tab key, level 0 textfield are selected and I cant back to level 1 Have you got an idea to avo

Re: [Flashcoders] >> Tab problem

2006-02-24 Thread Morten Barklund TBWA\\Play
CARABUS plus wrote: How can I do to discard tab action for a full level ? _levelX.tabChildren = false; :) -- Morten Barklund - Information Architect - TBWA\Play Gothersgade 49, 4th floor - DK-1123 Copenhagen K, Denmark Phone: +45 7027 2227 - Fax: +45 3369 1174

[Flashcoders] >> Tab problem

2006-02-24 Thread CARABUS plus
Good morning How can I do to discard tab action for a full level ? Tabenaled ? Thanks ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought