Hi,
I have an HTML page containing a flash file,
I need to write code in javascript that would execute once the flash file is loaded.
(its actually the code to overide the __flash__removeCallback
to solve the famous line:52 bug refer: https://bugs.adobe.com/jira/browse/FP-529)
The actual solution for the bug is doing so on window.onUnload. But this is not possible in my cases since the flash component is in an iframe and the window.onUnload is never fired at all.
For the code to not display an error, i need to track event when the flash file has finished loading on screen.
does any one here have a solution to track down when the flash file has completed loading
OR
Any other solution for the bug that does not involve tracking window.onUnload ?