Document.saveandcompact(), Document.saveaversion() – Adobe Extending Flash Professional CS4 User Manual
Page 157
135
EXTENDING FLASH CS4 PROFESSIONAL
Document object
Example
The following example saves the current document in its default location:
fl.getDocumentDOM().save();
See also
document.saveAndCompact()
Availability
Flash MX 2004.
Usage
document.saveAndCompact([bOkToSaveAs])
Parameters
bOkToSaveAs
An optional parameter that, if
true
or omitted and the file was never saved, opens the Save As dialog
box. If
false
and the file was never saved, the file is not saved. The default value is
true
.
Returns
A Boolean value:
true
if the save-and-compact operation completes successfully;
false
otherwise.
Description
Method; saves and compacts the file. This method is equivalent to selecting File > Save and Compact.
Note: If the file has never been saved, this method returns
true
even if the user cancels the Save As dialog box. To
accurately determine whether the file was saved, use
.
Example
The following example saves and compacts the current document:
fl.getDocumentDOM().saveAndCompact();
See also
,
document.saveAVersion()
Availability
Flash CS3 Professional.
Usage
document.saveAVersion()