How To Make A Score Bar And Pickups In Adobe flash CS3 In Actionscript 2.0 Part 2
Loading...
5,663
Loading...
Uploader Comments (ThomasB2685)
see all
Video Responses
This video is a response to How To Make A Moving And Jumping Character In Adobe Flash CS3 In Actionscript 2.0 Part 1
see all
All Comments (29)
-
1 coin collected an NaN scores lololol
-
the file is so hard to download ~_~
-
@bennythebull9 use this code onClipEvent (enterFrame)
{ Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse;
}
-
Hi Josh.
-
keep pressing 8, Josh says Hi. (;
-
try this
on the target put
onClipEvent(enterFrame){
on(press){
this.gotoAndPlay(2);
_root.score++;
}
}
-
josh says hi
-
@McRacoon66 Yeah, really. I'm having a hard time finding a tutorial about that, myself.
-
How do you make it so that the score bar follows your player (for bigger levels)? Pleaseeee someone help me? D:
-
@marioandluigi244 looooooooooooooooool,i got answer after one year xD, anyway i dont need this for long time .But its so funny to see something what i did 1 year ago,haha
Loading...
do you know how to make a game where you click a target, (like a shooter) and it gives you a point?
bennythebull9 2 years ago
No sorry.
I am no good at mouse flash games.
Ask another Flash Guru
ThomasB2685 2 years ago
And what do you mean by +1
ThomasB2685 2 years ago
i mean like maze game and when i reach finish it count score +1 . i move wiht Mouse.
mazaisvilijs 2 years ago
if you mean like you hit the finish and score goes up 1 and then moves on to the next level i think the code is
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.score++;
_root.gotoAndStop(2)
}
}
Change the 2 in brackets to the frame the next level is on. you can delete the gotoAndStop(2) bit if you dont want it to go to the next level
ThomasB2685 2 years ago
what sort of target
ThomasB2685 2 years ago