Does anybody know why Selection.setFocus(mc) would return false, even if mc
has a unique tabindex .it won't receive tabbing focus, unless you put it
inside a handler:

 

test_mc.tabIndex = 1;

 

trace(Selection.setFocus(test_mc)); // traces false

 

test_mc.onRelease = function() {

            trace(Selection.setFocus(this)); //traces true

            

};

 

Does anybody know what goes on behind the scenes here.?

 

Grtz,

Tom

_______________________________________________
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

Reply via email to