I have a game made by Flash CS5 ActionScript3. I want to create a button in the game where I can save the current timeline of the game. For example, I stopped at frame 5 and save the game. So when I load it, I should instantly return to frame 5. How can I do this? Thanks.

link|improve this question

33% accept rate
feedback

2 Answers

up vote 3 down vote accepted

like a cookie that stor data in your local machine

var mySharedObject:SharedObject = SharedObject.getLocal("myGameCookie");//creat a sharedobject

function saveCurrentFrame(){
    mySharedObject.data.lastframe= this.currentFrame;//save lastFramePosition
    mySharedObject.flush();
}

function getLastFrame():int{
  if(mySharedObject.data.lastframe){
    return mySharedObject.data.lastframe;
    };
}

function clearLastFrame(){
  mySharedObject.clear();
}
link|improve this answer
You should always add an explanation to your code snippets. This doesn't make a complete answer. – weltraumpirat Feb 14 at 15:02
Thank you sir. I will try this sir. Thanks. – Genesis John Dagdag Feb 14 at 15:16
Sir @mgraph, I have this error sir during saving. ArgumentError: Error #1063: Argument count mismatch on AlienBuddiesMAIN_fla::MainTimeline/saveCurrentFrame(). Expected 0, got 1. AlienBuddiesMain is the name of my game sir. – Genesis John Dagdag Feb 21 at 2:20
@GenesisJohnDagdag if u use mouseEvent for a function add saveCurrentFrame(e:MouseEvent) – mgraph Feb 21 at 8:46
feedback

You could also save the number of the frame in a settings file, of your application. Subsequently, when you restart the application, you can load that number in the initialization state, and render from that frame onward when the initialization is complete.

Have a great day.

link|improve this answer
Thanks. Do you have any code sir for that? Thank you so much. – Genesis John Dagdag Feb 14 at 15:16
On second thought, that solution wouldn't work for the writing part, unless you would use AIR. So using a SharedObject could be the answer you're looking for. – Romi Halasz Feb 14 at 15:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.