Click to See Complete Forum and Search --> : Problem with my .swf file running on IE and Opera


lunforgottenl
08-19-2007, 06:15 PM
Hello,

I have a problem, I created a .swf file, it is a navigation bar on my web-site. For some reason if you try to click on it using IE or Opera it does nothing on the other hand it works perfectly under Firefox.

I also noticed that once you go to a different page within my web-site and you try to click on the buttons again in IE/Opera it works.

Could this be a problem with the way I programmed the .swf document on the .html file? This is the snip of the HTML:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="603" height="31">
<param name="movie" value="animation/navigation.swf">
<param name="quality" value="high">
<embed src="animation/navigation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="603" height="31"></embed>
</object>

For some reason when I use IE or Opera I can not click on the buttons I created on this .swf file. I will appreciate any help.

Thanks,
John.

dcpweb
08-19-2007, 08:04 PM
Hi,

The code you have created looks OK so this is not the problem, have you installed the latest versions of broswers?

Also you should not place your code in .html file, you should load the code in to .html via javascirpt file. This resolves the problem with having to click the flassh file before it acitvates.




regards

p shah - www.dcpweb.co.uk

lunforgottenl
08-19-2007, 08:06 PM
Oh really? How do I do that :)?