AS
import flash.external.ExternalInterface;
_btn.addEventListener(MouseEvent.CLICK,function(e:Event){
ExternalInterface.call("AScallJS");
});
val_btn.addEventListener(MouseEvent.CLICK,function(e:Event){
ExternalInterface.call("AScallJSVal","我是參數");
});
JS
function AScallJS(){
alert("AS call JS");
}
function AScallJSVal(val){
alert("AS call JS,val="+val);
}
0 意見:
張貼留言