Attempting to pass 2 variables from JavaScript to Flash, I came up with a solution in ActionScript 3 to try and receive them.
ExternalInterface.addCallback("callAs", muscle, tension);
However, this method resulted in an error:
Error: 1137 - Incorrect number of arguments. Expected no more than 2.
Is there a way to send both variables at once instead of making separate calls each time?
Thank you for your help! Resin