How do you do this redirect?

blanko

BANNED
Joined
Mar 16, 2008
Messages
592
Reaction score
127
Could someone explain to me how to make a .swf redirect file in macromedia? I used to be able to, but I forgot how.
 
Create a button and in the action script place a on event redirect and place in timeline where ya want it Script assist makes this easy so turn that on
 
Here is the redirect code you need to place in your buttons action script.
but edit to the correct redirect of course.
PHP:
on (release) {
	getURL("www.redirect.com");
}

DAMINK
 
swf is something interesting to learn more for make money stuff...
 
I just got home and read the post again.
Perhaps i was a little wrong in what i said.
The above works of course with buttons etc but if you just want to redirect after lets say the movie ends.. Or after certain time then create a actions layer and place a keyframe wherever you want it to redirect then add action script below.
Code:
getURL("www.redirect.com", "_self");

One of the 2 should work for ya.

DAMINK
 
Back
Top