Extending Flash |
|
|
|
| Objects > Document object > document.publishProfiles | |||
Flash MX 2004.
document.publishProfiles
Read-only property; an array of the publish profile names for the document.
The following example displays the names of the publish profiles for the document:
var myPubProfiles = fl.getDocumentDOM().publishProfiles;
for (var i=0; i < myPubProfiles.length; i++){
fl.trace(myPubProfiles[i]);
}
|
|
|
|