im 3 months old to flash mx and am working on a website right now that requires me to loop a flash file as a movie x amount of times and then automatically transport the user to the homepage, in the same window…im also using fireworks and dreamweaver mx, any help would be awesome, thanks
Hi;
Just put this code in the last frame of your movie:
if(timesToloop < x){
gotoAndPlay(1);
timesToloop++;
} else {
getURL(“yourHomePage.com”, “_self”);
}
‘x’ being the number of loops.
Hope it helps
SHO
thanks very much!
That’s all right:thumb: