78
Chapter 3: Objects
Example
The following examples pastes the Clipboard contents to the center of the document:
fl.getDocumentDOM().clipPaste();
The following example pastes the Clipboard contents in place in the current document:
fl.getDocumentDOM().clipPaste(true);
document.close()
Availability
Flash MX 2004.
Usage
document.close( [
bPromptToSaveChanges
] )
Parameters
bPromptToSaveChanges
A Boolean value that, when set to
true,
causes the method to prompt
the user with a dialog box if there are unsaved changes in the document. If
bPromptToSaveChanges
is set to
false
, the user is not prompted to save any changed
documents. The default value is
true
. This parameter is optional.
Returns
Nothing.
Description
Method; closes the specified document.
Example
The following example closes the current document and prompts the user with a dialog box to
save changes:
fl.getDocumentDOM().close();
The following example closes the current document without saving changes:
fl.getDocumentDOM().close(false);
document.convertLinesToFills()
Availability
Flash MX 2004.
Usage
document.convertLinesToFills()
Parameters
None.
Содержание FLASH MX 2004-FLASH JAVASCRIPT DICTIONARY
Страница 1: ...Flash JavaScript Dictionary ...
Страница 16: ...16 Contents ...
Страница 40: ...40 Chapter 2 Top level functions ...
Страница 368: ...368 Chapter 3 Objects ...
Страница 386: ...386 Chapter 4 C Level Extensibility ...