关于FLASH 中的System.setClipboard()

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"); //将文字全选
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值