[jQuery] Re: Closing a thickbox from within a Flash movie

2007-09-21 Thread Alexandre Plennevaux
To: jquery-en@googlegroups.com Subject: [jQuery] Re: Closing a thickbox from within a Flash movie Gordon, In your flash file you need to put: import flash.external.*; Then at the last frame put something like: ExternalInterface.call("function(){\\code to close thickbox}"); If tha

[jQuery] Re: Closing a thickbox from within a Flash movie

2007-09-21 Thread spinnach
or even more simple (without the additional overhead of including the ExternalInterface class): getURL("javascript:closeFunction()"); dennis. Benjamin Sterling wrote: Gordon, In your flash file you need to put: import flash.external.*; Then at the last frame put something like: ExternalI

[jQuery] Re: Closing a thickbox from within a Flash movie

2007-09-21 Thread Benjamin Sterling
Gordon, In your flash file you need to put: import flash.external.*; Then at the last frame put something like: ExternalInterface.call("function(){\\code to close thickbox}"); If that does not work, try creating a new function on the javascript side and call it like: ExternalInterface.call('cl