Click to See Complete Forum and Search --> : giving link to flash file


punithapary
01-06-2009, 02:56 AM
Hi,
I am trying to give link for my flash movie but its not working.Can anyone tell me how to give link for full flash movie

Eye for Video
01-06-2009, 06:57 AM
Can you describe the problem in more detail? Are you trying to pass on a link from your site which has a working Flash movie, to another site? Or are you trying to link to a Flash file on your own Web page and are not able to correctly find the path to it?
EfV

punithapary
01-06-2009, 10:24 PM
I want to give html link to flash movie that means if i click flash movie then it will go to html link like that.Can u tell me how to do this

Eye for Video
01-06-2009, 11:28 PM
So you want a button over the top of the movie? So when you click the button on top of the movie, it will go to a different html page?
Or do you want an html link to start the flash movie?
EfV

punithapary
01-06-2009, 11:52 PM
Hi,

My html link page is live.php and my flash movie name is live.swf.What i need mean if i click over my flash movie i want to redirect to live.php can u tell me how to do this

Eye for Video
01-07-2009, 01:42 PM
One way to do this if you have access to the Flash .fla file is to create an invisible button over the top of the movie. Create a button in Flash which on rollover will reveal a message like "Clice here to go to Live page". Then use a getURL to redirect to live.php (in AS2).
movie_btn.onRelease = function() {
getURL("live.php");
}
Here's an example of using an invisible button over the top of a Flash movie.
http://www.twicetoldyoga.com/dvd_1.html
Click on the Play Version #1. Mouse over the movie and a "Buy Now" button is revealed which redirects to a different frame, but could just as easily redirect to a different Web page using the getURL. Could also be adapted to AS3 using whatever it does to getURL.
EfV