I have to build quiz in flash for desktop. I am using a quiz template which is already inbuilt in flash. I have placed “Username” and “password” in the first frame. I have been able to verify the username and password but now the quiz doesn’t go past the welcome page when I test movie. As well as I need to save the result of various iterations of the quiz under different username so that an admin can see it later. I would like to save the scores in such a way that the score stays even if the flash movie is closed. I found some solutions through Google, but they mostly deal with browsers and web servers. Since I am building a desktop application, I can not use those. I am newbie in flash. If some one can please help me with it will be grateful. Any ideas? suggestions?
Ganga
game_data.data.(variable) is saved data. Say we want to save your score. game_data.data.last_score = score //This saves last_score at the value of score Say we want to load your score. score = game_data.data.last_score // This loads score at the value of last_score
game_data.data is only saved locally, use API on a website to save server-sided i.e. Kongregate;