I have this in AS3
var myName:String = "David";
var result:Number = ExternalInterface.call("methodInJS", myName);
trace("Result from JS call is: "+result);
And in javascript
function methodInJS(name) {
alert("Hello to " + name);
return 17;
}
This allows me to send to javascript. What is the method to do the opposite. I want to send to flash.
SOLUTION: Looks like the addCallback works.
Thanks