[Flashcoders] Problems opening windows in Flash 8 w/Java Script...

2007-07-03 Thread Jay Carlson
so I've been working on a new flash project that opens new windows to display details of projects. well, I noticed that if I publish the swf as Flash 8, the java script won't work. is this a common problem? or am I just putting the wrong code in? this is what I'm using on the flash

Re: [Flashcoders] Problems opening windows in Flash 8 w/Java Script...

2007-07-03 Thread eka
Hello :) in flash8 you must use the ExternalInterface class :) if ( ExternalInterface.available ) { ExternalInterface.call( openWindow , params ) ; } EKA+ :) 2007/7/3, Jay Carlson [EMAIL PROTECTED]: so I've been working on a new flash project that opens new windows to display

Re: [Flashcoders] Problems opening windows in Flash 8 w/Java Script...

2007-07-03 Thread Jay Carlson
sorry, Newb question probably...do I need to put the java in my HTML then? or is it different code there, too? Jay On Jul 3, 2007, at 10:14 AM, eka wrote: Hello :) in flash8 you must use the ExternalInterface class :) if ( ExternalInterface.available ) { ExternalInterface.call(

Re: [Flashcoders] Problems opening windows in Flash 8 w/Java Script...

2007-07-03 Thread hi_mito
windows in Flash 8 w/Java Script... so I've been working on a new flash project that opens new windows to display details of projects. well, I noticed that if I publish the swf as Flash 8, the java script won't work. is this a common problem? or am I just putting the wrong code