JeffStoker
Technical User
This is the simplified version of the script I have on frame(1) of the main timeline. It works correctly when I test movie, but does not work online, it plays the movie through on first visit, but stays on frame(1) when you return to page on next visit. Can any of you experts steer this wannabe in the right direction??
stop();
mySO = sharedObject.getLocal("3by7intro"
;
returned = mySO.data.viewed;
if(returned == "yes"
{
gotoAndStop(540);
trace (returned);
}else{
mySO.data.viewed = "yes";
mySO.flush();
gotoAndPlay(4);
trace ("not yes"
;
}
stop();
mySO = sharedObject.getLocal("3by7intro"

returned = mySO.data.viewed;
if(returned == "yes"

gotoAndStop(540);
trace (returned);
}else{
mySO.data.viewed = "yes";
mySO.flush();
gotoAndPlay(4);
trace ("not yes"

}