Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
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 Antworten
- Mohamed MansourLv 6vor 2 JahrzehntenBeste Antwort
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!
- vor 2 Jahrzehnten
If you have the fla then add this actionscript to the first frame
this.onRelease = function(){
getURL("http://www.yahoo.com","_blank")/
}