|
|
fl.clipCopyString()
AvailabilityFlash
CS3 Professional.
Usagefl.clipCopyString(string)
Parameters- string
- A string to be copied to the Clipboard.
DescriptionMethod;
copies the specified string to the Clipboard.
To copy the
current selection to the Clipboard, use document.clipCopy().
ExampleThe
following example copies the path of the current document to the
Clipboard:
var documentPath = fl.getDocumentDOM().path;
fl.clipCopyString(documentPath);
|