ExternalInterface sample
1 import flash.external.ExternalInterface; 2 3 function alert() { 4 ExternalInterface.call("alert", "Only a test"); 5 } 6 7 mybt.onRelease = function(){ 8 alert(); 9 }
1 import flash.external.ExternalInterface; 2 3 function alert() { 4 ExternalInterface.call("alert", "Only a test"); 5 } 6 7 mybt.onRelease = function(){ 8 alert(); 9 }