tabEnabled
Top  Previous  Next


SWiSH Player Support
SWF6 or later - Not Supported (Use File | Test | Browser/Player)

Syntax
buttonName.tabEnabled

Arguments
None.

Returns
Nothing.

Description
Property; determines whether a Button, Sprite, or TextField object is to be included in automatic or custom tab ordering. By default this property is set to true and will be included in tab ordering. If the property is set to false, then the object is not included in automatic or custom tab ordering. If a Sprite has the tabEnabled property set to false, the child sprites inside of it could still be included in tab ordering - unless the tabChildren property is also set to false.

Sample
onLoad() {
    button1.tabEnabled = false;
}

// disables tab ordering for this button