Is there a way to call a Javascript class method from ExternalInterface?
I can call JS functions with ExternalInterface.call('func_name',.args) . OK But what if I would like to call a js class instance method instead? ExternalInterface.call('obj.method_name',.args) //this seems not to work Is there any way of doing it? Luca It was only a matter of scope. You must instantiated the swf object outside the js class. Then I can reference it in ExternalInterface.call() . window.addEvent('domready',function(){ swf = new Swiff('../files/swf/italy.swf',{ id:'italy', container:'italy-flash', width:280, height:323, params:{ bgcolor:'#ffffff', wmode:'opaque', allowScriptAccess