Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How to make a link of a flash object?
It seems I cant make a link of a Flash object? I tried this:
<a href="http://www.pandhotel.com/%22%3E
<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/... width="205" height="34" align="middle">
<param name="movie" value="/special.swf">
<param name="quality" value="high">
<embed src="/special.swf" width="205" height="34" align="middle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer%22 type="application/x-shockwave-flash"></embed>
</object>
</a>
but it doesnt work :-(
2 Answers
- ?Lv 62 decades agoFavorite Answer
This is what I do:
<object type="application/x-shockwave-flash" data="/title.swf" width="500" height="200">
<param name="movie" value="/title.swf" />
<img src="/title.gif" width="500" height="200" alt="" />
</object>
Notice the width and height of title.swf(flash file) needs to go inside.
The reason why I placed the image tag is because what if people don't have FLASH, if they dont they will see the image instead
Enjoy!
- 2 decades ago
If you have the fla then add this actionscript to the first frame
this.onRelease = function(){
getURL("http://www.yahoo.com","_blank")/
}