cut /copy dont work on ios
Hi
I made this test. It works on my computer not on the iphone
do someone succed using iphone system clipboard
code
=========================================
import flash.desktop.ClipboardFormats;
bouton.addEventListener(MouseEvent.MOUSE_DOWN, customCopy); // only a button
function customCopy(MouseEvent){
var copy:String = texte.text; // textfield on the stage
Clipboard.generalClipboard.clear();
Clipboard.generalClipboard.setData(ClipboardFormats.TEXT_FORMAT, copy);
bouton.alpha = 0.5
}
bouton.addEventListener(MouseEvent.MOUSE_UP, up)
function up(MouseEvent){bouton.alpha = 1; texte.text = "copied"}
=========================================
