Reputation: 5160
I click on a button (or any object where I can write Action Script) and It should call a javascript function which I wrote in my functions.js
Like an alert message for example.
How do I do this?
Upvotes: 0
Views: 289
Reputation: 15338
try this ExternalInterface.call("functionname","variables");
ExternalInterface.call("functionname","variables");
Upvotes: 2