Extending Flash |
|
|
|
| Objects > Project object > project.publishProject() | |||
Flash 8.
project.publishProject()
None.
A Boolean value indicating if the project was successfully published.
Method; publishes the FLA files in a project.
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);
fl.getProject(), project.canPublishProject(), projectItem.publish()
|
|
|
|