This is my problem when working with flash - as3: I have the code here and i want to known why it's value is FALSE?
ExternalInterface.call('console.log',"addCallback");
var wasSuccessful:Boolean = ExternalInterface.addCallback("playMusic", jsPlayMusic);
ExternalInterface.call('console.log',wasSuccessful.toString());
This is result in console:
addCallback
false
Thanks you for help!