MACROMEDIA FLASH 8-EXTENDING FLASH Manual page 357

Extending flash
Table of Contents

Advertisement

Example
The following example displays the path and name of the currently open project file in the
Output panel:
fl.trace("Project is located at: " + fl.getProject().projectURI);
See also
,
fl.getProject()
project.name
project.publishProject()
Availability
Flash 8.
Usage
project.publishProject()
Parameters
None.
Returns
A Boolean value indicating if the project was successfully published.
Description
Method; publishes the FLA files in a project.
Example
The following example publishes the project after confirming that it can be published, and
then indicates whether the project was published in the Output panel:
if (fl.getProject().canPublishProject()) {
var bSucceeded = fl.getProject().publishProject();
}
fl.trace(bSucceeded);
See also
,
fl.getProject()
project.canPublishProject()
,
projectItem.publish()
Project object
357

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?

This manual is also suitable for:

Flash 8

Table of Contents