How can save the users score for the next frame?
Im using dynamic text box and it all gose somthing like this
sory for the mistakes it rote it up just now
Code:
//frame1 - 2 layer score
_root.score = 0;
// Varible for the dymanic text box
scorer
// MC called my.MC layer game frame1
on(release){
_root.score +=1;
_root.scorer.text = _root.score;
}
Why dose the dynamix text box still come up with 0 on frame 2 should _root.score show the same number as before from frame 1