vote up 1 vote down star

Is it possible to use a flash document embedded in HTML as a link?

I tried just wrapping the object element with an a like this:

<a href="http://whatever.com">
    <object ...>
        <embed ... />
    </object>
</a>

In Internet Explorer, that made it show the location in the status bar like a link, but it doesn't do anything.

I just have the .swf file, so I can't add a click handler in ActionScript.

flag

3 Answers

vote up 1 vote down check

Though the object really should respond to being wrapped in an a href tag, you could open the swf in vim and just throw in an _root.onPress=function(){getURL("http://yes.no/");}; or if it's AS3, something like _root.addEventHandler(MouseEvent.PRESS, function (e:event) {getURL("http://yes.no/");}); But if editing the swf is your route, you'd likely have more success with a tool for the purpose.

link|flag
vote up 0 vote down

You could use Javascript to add a handler (added inline for brevity):

<object onclick="window.location='URLHERE';return false;">

That should work, methinks.

link|flag
vote up 0 vote down

As an addition to dlamblin's answer it is often best to use the clickTAG technique to open URLS from a flash movie.

More information can be found here:

http://www.adobe.com/resources/richmedia/tracking/designers_guide/

The advantage of using the clickTAG technique is that you can set the URL to jump to in the HTML page.

This means that you can set the flash movie to link to different places without modifying the flash file (beyond adding the initial clickTAG code). You can use link tracking on the URL as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.