hello my name is fabo,
my problem is i made a game and i need to know how to show the game score in the next frame, but i don't know what to script in the next frame!!! Here is my script for my frame that shows my game with the score at the end of the the countdown
var score:Number = 0;
var Seconds:Number = 10;
function timer():Void {
Seconds--;
trace(Seconds);
if (Seconds == 0) {
_root.gotoAndPlay(5);
clearInterval(timeInt);
}
}
timeInt = setInterval(timer, 1000);
stop();
will someone edit my next frame to show the final score
or tell me what to write in the next frame??? thanks alot![]()


Reply With Quote
