You can generate a cookie from flash that once it loads, it won't load again for that user.
Quote:
visitCheck = sharedObject.getLocal("cookieCrumb");
if (visitCheck.data.beenHere == true){
this.gotoAndPlay("begin"); //this should go to wherever your movie starts after the intro
} else {
visitCheck = sharedObject.getLocal("cookieCrumb");
visitCheck.data.beenHere = true;
visitCheck.flush();
}
|
Something to that effect should wor.