Is it possible to insert a link to the object tag where after you click it you will be redirected to that link?
I already tried this:
<a href="LINK"><OBJECT TAG></a>
and even this:
<OBJECT TAG height="109"><a href="LINK" style="margin-top:-109px;"></a>
The first one is working on Chrome but in the other web browser I can’t click the link.
So basically, is it really possible to link an object/flash object.
Thanks.
I’m assuming adding a button in the flash object is out of the question, in that case you can position the anchor over the flash object, using “position: absolute” and z-index (optional). Example: http://jsfiddle.net/qbK5Q/ (I haven’t used an actual flash object, but it should work with one):
CSS:
If it’s a flash object, make sure that it has the “wmode” param set to “transparent” or “opaque”. The problem with this solution is that the link will cover the flash object making it inaccessible to your mouse cursor (buttons and mouse events inside flash won’t be accessible to the user).