MACROMEDIA FLASH 8-EXTENDING FLASH Manual page 375

Extending flash
Table of Contents

Advertisement

screen.tabIndex
Availability
Flash MX 2004.
Usage
screen.tabIndex
Description
Property; equivalent to the Tab Index field in the Accessibility panel. This value lets you
determine the order in which objects are accessed when the user presses the Tab key.
Example
The following example gets the tab index of the object:
var theTabIndex = fl.getDocumentDOM().screenOutline.screens[1].tabIndex;
The following example sets the tab index of the object to 1:
fl.getDocumentDOM().screenOutline.screens[1].tabIndex = 1;
screen.timeline
Availability
Flash MX 2004.
Usage
screen.timeline
Description
Read-only property; the
Example
The following example gets the
assigns the array of
timeline
properties in the Output panel:
myArray = new Array();
if(fl.getDocumentDOM().screenOutline) {
for(i in fl.getDocumentDOM().screenOutline.screens[0].timeline) {
myArray.push(" "+i+" :
"+fl.getDocumentDOM().screenOutline.screens[0].timeline[i]+" ") ;
}
fl.trace("Here are the properties of the screen named "+
fl.getDocumentDOM().screenOutline.screens[0].name+": "+myArray);
}
Timeline object
for the screen.
screenOutline
properties for the first screen to
property of the current slide document,
myArray
, and displays those
Screen object
375

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH 8-EXTENDING FLASH and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flash 8

Table of Contents