Nieuw lid |
|
//in frame 1
stop();
plaats = SharedObject.getLocal("test", "/");
if(plaats.data.frameNummer == undefined){
play();
}else{
gotoAndStop(plaats.data.frameNummer);
}
//in frame 1 stop(); plaats = SharedObject.getLocal("test", "/"); if(plaats.data.frameNummer == undefined){ play(); }else{ gotoAndStop(plaats.data.frameNummer); }
//in frame 10
stop();
f = _currentframe;
plaats.data.frameNummer = f;
plaats.flush();
//in frame 10 stop(); f = _currentframe; plaats.data.frameNummer = f;
|