Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 570 Bytes

File metadata and controls

31 lines (18 loc) · 570 Bytes

fl.clipCopyString()

Availability

Flash CS3 Professional.

Usage

fl.clipCopyString(string)

Parameters

string A string to be copied to the Clipboard.

Returns

Nothing.

Description

Method; copies the specified string to the Clipboard. To copy the current selection to the Clipboard, use document.clipCopy().

Example

The following example copies the path of the current document to the Clipboard:

var documentPath = fl.getDocumentDOM().path;
fl.clipCopyString(documentPath);