|
-
actionscript 2.0 need help showing score on next frame!!!
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
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|