Mar 28, 2002 #1 kris29 Programmer Apr 23, 2006 10 IN Hi, Is there a way to add an <href> tag around the <embed> tag to make a flash movie into a link? when you click the movie it loads an html page.
Hi, Is there a way to add an <href> tag around the <embed> tag to make a flash movie into a link? when you click the movie it loads an html page.
Mar 28, 2002 #2 oldnewbie Technical User Dec 6, 2000 9,142 CA You could have an invisible button covering your entire movie (done in Flash!), and clicking anywhere would call up the html page! Regards, Upvote 0 Downvote
You could have an invisible button covering your entire movie (done in Flash!), and clicking anywhere would call up the html page! Regards,
Mar 28, 2002 #3 esearing IS-IT--Management Aug 22, 2000 132 US If you have no other buttons on the movie, create an empty MovieClip and attach this code. onClipEvent (mouseDown){ getUrl ("http://yourUrl", "_blank" } The mouse does not have to be over the MC to initiate the action. This also does not change the pointer to a hand. eSearing.com a work in progress Upvote 0 Downvote
If you have no other buttons on the movie, create an empty MovieClip and attach this code. onClipEvent (mouseDown){ getUrl ("http://yourUrl", "_blank" } The mouse does not have to be over the MC to initiate the action. This also does not change the pointer to a hand. eSearing.com a work in progress