关于FLASH 中的System.setClipboard()

      :: Flash :: 2004-8-15 16:14
System.setClipboard()

Availability
SWF files published for Flash Player 6 or later, playing in Flash Player 7 or later.
Usage
System.setClipboard(string:String) : Boolean
Parameters
string A plain-text string of characters to place on the system Clipboard, replacing its current
contents (if any).
Returns
A Boolean value: true if the text is successfully placed on the Clipboard; false otherwise.
Description
Method; replaces the contents of the Clipboard with a specified text string.
//偶的英文不好,看个大概,有了一个复制的功能...

Example
The following example places the phrase "Hello World" onto the system Clipboard:

System.setClipboard("Hello world");
The following example creates two text fields at runtime, called in_txt and out_txt. When you
select text in the in_txt field, you can click the copy_btn to copy the data to the Clipboard.
Then you can paste the text into the out_txt field.
this.createTextField("in_txt", this.getNextHighestDepth(), 10, 10, 160, 120);
in_txt.multiline = true;
in_txt.border = true;
in_txt.text = "lorum ipsum...";
this.createTextField("out_txt", this.getNextHighestDepth(), 10, 140, 160,
120);
out_txt.multiline = true;
out_txt.border = true;
out_txt.type = "input";
copy_btn.onRelease = function() {
System.setClipboard(in_txt.text);//复制文字
Selection.setFocus("out_txt"); //将文字全选
};
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}