Linking a flash file in html

Hi i have a problem with linking a flash file in html.
I dont want to make the link IN flash but with code .

i have the following code ant it isn’t working

<a href=“www.LINK.NL”>
<object onClick=“window.location.href=LOCATION” classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0” width=“234” height=“60”>
<param name=“movie” value=“MOVIE URL.swf”>
<param name=“quality” value=“high” >
<embed src=“MOVIE URL.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“234” height=“60”></embed>
</object></a>

i realy hope some one know how to make it work i surfed for hours and found nothing,

tnx!:nerd:

why link the swf in html? (don’t think it’s possible)
just create a rectangle with width&height as you movie. then create a button of it and add this to your button:
[AS]
on (load) {
this._alpha = 0;
}

on (release) {
getURL(“http://www.site.com/”);
}
[/AS]

that way the whole swf will be a link.