[WSG] take object out of tab order

2005-04-08 Thread Martin Heiden
Hi! Is there a way to take an object (flash) out of tab order? The problem: Our site uses flash for a small animation. There isn't any link/button inside the flash, just graphics. At least in Firefox on PC (IE does this job well) the focus gets lost in the flash while tabbing

Re: [WSG] take object out of tab order

2005-04-08 Thread Kvnmcwebn
sorry for my ignorance what is the tab order? -Kevin ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list getting help

Re[2]: [WSG] take object out of tab order

2005-04-08 Thread Martin Heiden
Kevin, Am Freitag, 8. April 2005 um 01:32:08 haben Sie geschrieben: K sorry for my ignorance what is the tab order? I'm not sure if it is your ignorance or my insuficient knowledge of the english language ;-) What I mean is: You can step through the links/objects/form elments on a HTML page

Re: [WSG] take object out of tab order

2005-04-08 Thread Lea de Groot
On Fri, 08 Apr 2005 00:32:08 +0100, Kvnmcwebn wrote: sorry for my ignorance what is the tab order? The order in which the fields are traversed in a page when the tab key is hit repeatedly. HIH! Lea ~ ANNC: looking for a permanent position in Brisbane - got anything? :) -- Lea de Groot Elysian

Re: [WSG] take object out of tab order

2005-04-08 Thread diona kidd
What happens if the tabindex is specified as null? Is it still included in the stack? On Fri, 2005-04-08 at 23:15 +1000, Lea de Groot wrote: On Fri, 08 Apr 2005 00:32:08 +0100, Kvnmcwebn wrote: sorry for my ignorance what is the tab order? The order in which the fields are traversed in a

Re[2]: [WSG] take object out of tab order

2005-04-08 Thread Martin Heiden
Diona, Am Freitag, 8. April 2005 um 15:24:36 haben Sie geschrieben: dk What happens if the tabindex is specified as null? Is it still included dk in the stack? Yes, it is. It's the same as don't specify a tabindex at all. I found out that it is a feature and that there is a workaround in

Re: [WSG] take object out of tab order

2005-04-08 Thread Kvnmcwebn
I think you need to specify the tabindex inside the flash movie, but im not sure how to do it properly. I found this at flash kit. _root.main.all_pages.contact.form.tNom.tabIndex = 0; so tabindex is just an actionscript property. -Kevin **