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.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 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.



 Any solution?







 Thanks  Regards

 Vivek Gaikwad - Flash Accessibility Developer







 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
Omar Fouad - Digital Emotions...
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

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 and you needed to move one, you would have to renumber any
that came after the one you moved.  Not fun, especially if you have a
lot of tabbable elements.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Tab Problem

2007-02-07 Thread Andrew Kirkpatrick
Vivek,
This is a limitation of the component focus Manager.   If you used
button components or non-component textfields the behavior you describe
wouldn't exist.
AWK

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Vivek Gaikwad
 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 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.
 
  
 
 Any solution?
 
  
 
  
 
  
 
 Thanks  Regards
 
 Vivek Gaikwad - Flash Accessibility Developer
 
  
 
  
 
  
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training 
 http://www.figleaf.com http://training.figleaf.com
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Tab Problem

2007-02-07 Thread Hairy Dog Digital
Nice Steve! I'll keep this one in mind. My clients often rip up forms
(either that, or my designer does)!

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks
| BLITZ
Sent: Wednesday, February 07, 2007 1:33 PM
To: Flashcoders mailing 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.  If you number your tabIndexes
specifically and you needed to move one, you would have to renumber any that
came after the one you moved.  Not fun, especially if you have a lot of
tabbable elements.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[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/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com