Externalinterface Gives Me An Option Of Stopping The Script When Using Multiple Parameters. Why?
First version: ExternalInterface.call('$(document).trigger', 'opened_file_chooser'); Second version: ExternalInterface.call('$(document).trigger('opened_file_chooser')'); If I us
Solution 1:
Try setting a timeout which will let ExternalInterface "return" to Flash which should help with the blocking:
ExternalInterface.call("setTimeout","$(document).trigger('opened_file_chooser')","100");
Post a Comment for "Externalinterface Gives Me An Option Of Stopping The Script When Using Multiple Parameters. Why?"