I almost tried every thing in AS3. But now I am leaving with 1 topic -Saving and Loading (Action Script 3)Can please anyone help meAnd (If you Can) Please answer on my profile
its simple with shared objectsvar savedData:SharedObject;savedData = SharedObject.getLocal("savedDataName"then if you want to save lives take the lives variable and create the datasavedData.data.lives = variableContainingLives;if you want to get the data then just switch it aroundvariableContainingLives = savedData.data.lives;THIS LINK explains more in depth and also provides source for you to follow along and work your own solutiongood luck
You must be logged in to post a reply!