RE: [Flashcoders] ExternalInterface broken? chrome and safari on linux...

2010-05-05 Thread Mattheis, Erik (MIN - WSW)
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html Flash Player for Linux version 9.0.31.0 and later supports the ExternalInterface class in the following browsers: Browser Mozilla 1.7.x and later Firefox 1.5.0.7 and later SeaMonkey 1.0.5 and

Re: [Flashcoders] ExternalInterface broken? chrome and safari on linux...

2010-05-05 Thread Glen Pike
Why would anyone in their right mind want to run Safari on a Linux box :'( On 05/05/2010 16:25, tom rhodes wrote: anyone got ExternalInterface calls working in chrome/safari on linux? or know why mine might be failing? they work on everything else seemingly... tia, tom.

Re: [Flashcoders] ExternalInterface broken? chrome and safari on linux...

2010-05-05 Thread tom rhodes
ok, currently got probs with firefox as well on linux. the swf thinks ExternalInterface is available but nothing gets called in the JS On 5 May 2010 18:00, Mattheis, Erik (MIN - WSW) ematth...@webershandwick.com wrote:

Re: [Flashcoders] ExternalInterface broken? chrome and safari on linux...

2010-05-05 Thread Paul Andrews
On 05/05/2010 17:43, tom rhodes wrote: ok, currently got probs with firefox as well on linux. the swf thinks ExternalInterface is available but nothing gets called in the JS Maybe it's really a problem with the code. The most common error is trying to call Flash functions before the swf is

Re: [Flashcoders] ExternalInterface broken? chrome and safari on linux...

2010-05-05 Thread tom rhodes
now i'm testign with a super simple test swf in AS2 like this... import flash.external.ExternalInterface; if(ExternalInterface.available) { statusTXT.text = External Interface is available; ExternalInterface.call(alert, Called from flash); getURL(javascript:alert('alternative JS call');); }