Leighton21
Technical User
Hi all,
I have a SWF file which I load in an external window with the following code
function newWindow(movieswf){
movieWindow = window.open(movieswf,
'movieWin', 'width=280, height=210')
movieWindow.focus()
}
and call with
href="javascript:newWindow('Media/Movie/movie.swf')"
This works fine in both IE and Firefox.
The problem is that I added a preloader to the SWF file. The prelaoder will show fine in Firefox but in IE it will show a blank window (until the actual movie is loaded). Is there an issue with IE.
I have a SWF file which I load in an external window with the following code
function newWindow(movieswf){
movieWindow = window.open(movieswf,
'movieWin', 'width=280, height=210')
movieWindow.focus()
}
and call with
href="javascript:newWindow('Media/Movie/movie.swf')"
This works fine in both IE and Firefox.
The problem is that I added a preloader to the SWF file. The prelaoder will show fine in Firefox but in IE it will show a blank window (until the actual movie is loaded). Is there an issue with IE.