MACROMEDIA FLASH 8-EXTENDING FLASH Manual page 91

Extending flash
Table of Contents

Advertisement

document.currentPublishProfile
Availability
Flash MX 2004.
Usage
document.currentPublishProfile
Description
Property; a string that specifies the name of the active publish profile for the specified
document.
Example
The following example adds a new publish profile with the default name and then displays the
name of the profile in the Output panel:
fl.getDocumentDOM().addNewPublishProfile();
fl.outputPanel.trace(fl.getDocumentDOM().currentPublishProfile);
The following example changes the selected publish profile to
:
"Default"
fl.getDocumentDOM().currentPublishProfile = "Default";
document.currentTimeline
Availability
Flash MX 2004.
Usage
document.currentTimeline
Description
Property; an integer that specifies the index of the active timeline. You can set the active
timeline by changing the value of this property; the effect is almost equivalent to calling
. The only difference is that you don't get an error message if the
document.editScene()
index of the timeline is not valid; the property is simply not set, which causes silent failure.
Example
The following example displays the index of the current timeline.
var myCurrentTL = fl.getDocumentDOM().currentTimeline;
fl.trace("The index of the current timeline is: "+ myCurrentTL);
Document object
91

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flash 8

Table of Contents