Re: [Flashcoders] Tabbing and Components (again) ...

2006-08-25 Thread John VanHorn

i had this problem a while back and was able to solve it...but i cant
remeber exactly what i did.

i think i had to set focusManger to false on every onKillFocus event. so if
you had 1 combo box and two input text fields, you would need to write, for
every component and text field:

instanceName.onKillFocus = function():Void{
_root.focusManager.enabled = false;
}

also, for the next project i worked on, I used the mCom components (
http://www.metaliq.com/mcom/)  and found that
they dont suffer from this problem at all.


On 8/24/06, Stephen Ford <[EMAIL PROTECTED]> wrote:


Hi,

I have a flash application that has a couple of combo box components and a
couple of text fields.

Trying to tab between my text fields doesn't work, even though they are
all tab enabled and have tab indexes.

The reason for this, I have recently found out, is due to the combo box
component - it breaks the tabbing.

The workaround for this is to include the following line (after the first
frame in my movie):

_level0.focusManager.enabled = false;

This works, HOWEVER, as soon as you choose something from the combo box,
the tabbing is broken again ???

Any anyone assist with what is going on here and if there is a fix.

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





--
John Van Horn
[EMAIL PROTECTED]
___
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] Tabbing and Components (again) ...

2006-08-24 Thread Stephen Ford
Hi,
 
I have a flash application that has a couple of combo box components and a 
couple of text fields.
 
Trying to tab between my text fields doesn't work, even though they are all tab 
enabled and have tab indexes.
 
The reason for this, I have recently found out, is due to the combo box 
component - it breaks the tabbing.
 
The workaround for this is to include the following line (after the first frame 
in my movie):
 
_level0.focusManager.enabled = false;
 
This works, HOWEVER, as soon as you choose something from the combo box, the 
tabbing is broken again ???
 
Any anyone assist with what is going on here and if there is a fix.
 
Thanks.___
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