I want to make it so that when I click anywhere on the embedded Flash element, it takes me to a destination URL.

Here is my current code, which does not produce the desired effect:

<div class="contentdiv" style="margin:-72px 0 10px 0px; cursor:pointer;" onclick="location.href='http://example.com/';">

<object height="410" width="720">
<param name="movie" value="images/tri.swf">
<embed src="images/tri.swf" height="400" width="700"> 
</embed>
</object>

</div>

Right now it is making the space behind the .swf file clickable for the link, but the Flash element is not clickable.

If the right thing to do is to edit the .swf file somehow, please let me know that. I don't consider myself a Flash developer, but are there any resources on where to get started or how to do something this basic with an existing .swf file?

Any suggestions are much appreciated!

link|improve this question

80% accept rate
feedback

5 Answers

up vote 4 down vote accepted

Update after more research:

This question has been asked before, and the best answer is that you have to create the link within flash.

Usually this is done dynamically by passing a parameter (conventionally named clickTAG) to the .swf to tell it where to link to.

In your case (since someone else provided your swf files) I can see 2 options:

  1. Your .swf author may have already implemented the clickTAG method (you can ask them, or just try it out on the .swf to see if it works.)
  2. You could make a flash wrapper file that implements clickTag, and have it load and display your .swf file. I know this seems like a hack, but I can't see any other alternatives.

Hope this helps!


I've also seen something like this used [edit: but I can't get it to work! Googling suggests that it's not possible]

<a href="http://example.com/" target="_blank">
 <object height="410" width="720"><param name="movie" value="images/tri.swf">
 <embed src="images/tri.swf" height="400" width="700"></embed>
 </object>
</a>

(For example here)

link|improve this answer
I tried implementing this and it did not work. Also, your link goes to a forum page that appears un-related to this topic. – JWM Jan 22 '10 at 18:47
The link is to a page with a flash banner ad: look at the page source to see how they did it! – Richard Inglis Jan 22 '10 at 23:34
Ok, I looked at the source code, and it's a little unclear because of the way they're setting up that example. They have the <a> tag going around the flash element and the text that comes after it. It's not clear if that <a> tag enables the linking for the flash element or not. For example, it could be because of the <a> tag or it could be because of the way the flash swf file is constructed. In any case, as I explained in my first comment, I tried implementing this with a simple <a> tag as you described, but it did not work. I don't think this is the appropriate fix. – JWM Jan 23 '10 at 0:26
You're right - I can't make it work either! Maybe there's a reason neither method works, like one of the parameters used to embed the swf? I'll do some more digging... – Richard Inglis Jan 23 '10 at 9:44
See my revised answer above... – Richard Inglis Jan 24 '10 at 9:28
show 1 more comment
feedback

Why not put the code inside your swf?

Is this not an option for some reason?

link|improve this answer
I would prefer this method because it seems like the most direct and simplest, but I am very unfamiliar with editing swfs. Do you recommend any swf source code editing program, tutorials? Thanks for any direction! – JWM Jan 22 '10 at 18:25
Ok, I now realize that you cannot just edit a ".swf" file, you need the ".fla" source file, which I do not have because somebody else designed this for me. – JWM Jan 23 '10 at 0:32
feedback

Put a transparent .gif or .png file over the flash using z-index and just anchor that transparent image with your URL.

link|improve this answer
feedback

I had the same problem, found this thread, but ended up creating my own solution.

I added transparent element to the link, then made it overlap the embeded swf

<a href="http://example.com/" target="_blank">
  <object height="410" width="720"><param name="movie" value="http://www.theslap.com/swf/slap_logo.swf">
    <embed src="http://www.theslap.com/swf/slap_logo.swf" height="400" width="700"></embed>
  </object>
  <i style="display:block; height: 410px; width: 720px;  position: relative; z-index: 9; margin-top: -410px;"></i>
</a>

Note - you should probably include the css in a separate file for production code.

link|improve this answer
feedback

You could create your own swf (or have someone do it for you) that has a button editable with FlashVars over the stage and that loads in your subject swf underneath that button.

I've created one for you: Download.

You just need to add two FlashVars when you embed it:

  1. url - The URL that will be visited if the swf is clicked.
  2. swf - The swf file to load.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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