;

PDA

Click to See Complete Forum and Search --> : After SWF-FLV HTML plays, I want to redirect to another HTML page


superman808
03-01-2007, 02:43 AM
As mentioned in the title...

Here is the reference link;

http://www.lewiscommunications.tv

In the META tag, I have a redirect that goes to the next page (the default main page of the website). It's timed at 17 seconds. The FLV is 15 seconds.

It kinda works...but not 100%. The best out would be to embed a redirect into my .FLA file, then export the SWF movie. After searching the Flash Video board, and 20 pages later...no explicit detail.

So my question is...How do you do it?

I have Flash 8, and I'm a noob.

Thanks in advance.

Irwin

pixelpappa
07-04-2008, 10:47 AM
I have the same problem and can't seem to find a solution. Did you find the answer?

superman808
07-04-2008, 02:03 PM
Pixelpappa,

Insert a frame or keyframe after your video plays. Then in the ACTIONS window add the following script;

getURL("../default.asp", '_self');

where "default.asp" is the file you want to launch.

You'll need to put in extra frames for a delay (or embed that within your video).

Hope that helps ya.
superman808

Stephanee
04-27-2009, 11:13 PM
1. Check this tutorial "Redirect to a URL when flash video (FLV) movie finishes playing - Solutions (http://flash-video-player.blogspot.com/2009/02/redirect-to-url-after-flash-video-flv.html)"
2. getURL(url, window, variables)
3. loadmovie() also works.
4. ActionScript is like this
function redirectPage(url:String)
{
getURL(url,"_self")
}
var website:String = 'http://www.yoursite.com';
var flvLength:Number = lengthOfFLV * 1000;
setTimeout(redirectPage,flvLength,website)