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

2007-07-03 Thread hi_mito
} its important to define the result as void, if not u could end up with a blank page or error code, at the very same window your flash is contained. ch33r2 - Original Message - From: "Jay Carlson" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 03, 2007 9:56 AM Subject:

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( "op

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 det

[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 side