hello~
i have tired to ExternalInterface but it doesnt work:(
my flash player version is 8.0.15.0Code:// as
myBtn.onPress = function()
{
flash.external.ExternalInterface.call("jsFunc", "hi");
}
// js
<script language="javascript">
function jsFunc( args )
{
window.alert(args);
}
</script>
