PDA

View Full Version : Making a flash image a link


Balkee867
07-31-05, 10:39 PM
Ok, so I have a bunch of buttons made using flash. I am trying to make them actual buttons, by giving them a page to go to. To do this, I need to make the flash image a link. What I am using right now is:

<a href="/index2.html"><object width="200" height="500">
<param name="movie" value="homekool.swf">
<embed src="homekool.swf" width="100" height="25">
</a>
</embed>
</object>
<br>

The image isn't a link, but the link is in the <br> after the code? How do I make the actual image the link, not what's below it?

danga1993
08-01-05, 08:08 AM
Your have ended the link "</a>" before the <br>, so its impossible that the <br> is the link. I think you should the the starting <a href> Before the <object> tag, which should make the object then the link. Then end it after the </object> tag.

Balkee867
08-01-05, 08:57 AM
yes I tried that, to prove what I am talking about, go to: www.webtossup.com/index2.html

None of the links are actually the flash buttons, but the little spaces in between them.

Balkee867
08-02-05, 11:42 AM
Please I really need help with this. I have also tried using:

on(release){ getURL('index2.html');
}


Bu that didn't work either. Please visit the site and tell me what I am doing wrong.

Balkee867
08-02-05, 05:10 PM
No more help need, I figured it out.