|
Flash CS4 Resources |
document.exportPublishProfileString()AvailabilityFlash CS4 Professional. Usagedocument.exportPublishProfileString( [profileName] ) Parameters
ReturnsAn XML string. DescriptionMethod: returns a string that specifies, in XML format, the specified profile. If you don’t pass a value for profileName, the current profile is exported. ExampleThe
following example stores an XML string that represents the current profile
in a variable named profileXML and then displays
it in the Output panel:
var profileXML=fl.getDocumentDOM().exportPublishProfileString(); fl.trace(profileXML); |