How to disable swf file to unclickable

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Stella2015
Forum Newbie
Posts: 3
Joined: Tue Sep 29, 2015 3:08 am

How to disable swf file to unclickable

Post by Stella2015 »

Hi Guys,

I need help on .swf file

I have uploaded .swf file into home page. When I click the swf file anywhere, it will link to another site. How do I disable swf file into not be able to click ?

Here is my current code

<div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shoc ... n=7,0,19,0" width="820" height="240" title="">
<param name="movie" value="img/intranet_banner.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="SCALE" value="exactfit">
<embed src="img/intranet_banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="820" height="240" menu=false SCALE="exactfit"></embed>
</object>
</div>

I search online and some give solution <param name="wmode" value="transparent">, this solution is not working as when I click anywhere around the flash video, it will actually open another site.
Post Reply