Published in: Other
// htmlヘッダ function showDialog(message){ alert(message); } // Flash側 // ExternalInterfaceライブラリをインポート import flash.external.ExternalInterface; // ボタンとかで callBtn.onPress = function():Void{ var str:String = textBox.text; ExternalInterface.call("showDialog", str); }
You need to login to post a comment.
