/ Published in: ActionScript 3
ExternalInterface - Right Using
Expand |
Embed | Plain Text
if (ExternalInterface.available) { try { ExternalInterface.addCallback("someFunction", someFunction); } catch(error:Error) { trace("Error: " + error); } catch(secError:SecurityError) { trace("Security error: " + secError); } } else { trace("ExternalInterface is not available"); }
You need to login to post a comment.
