How to make a walking / jumping game with Flash CS4 (Part 2/3 - Actionscript)
Uploader Comments (smittyguitarplyr)
All Comments (230)
-
and also, lol do you know of a way to control the jumps so that the longer you hold the button the higher he jumps, and if you barely tap it he doesnt jump as high
-
how do you change the command so that it only jumps once, even if the jump button is held down, because if i hold down the button the character jumps repeatedly
-
how do you make it so it would play a different cycle jumping, or attacking?
-
The music only plays when I press enter. Why?
-
how do i change the jump height?
-
WTF IT WALKS BACKWARDS
-
i GOT a problem :( : "Scene=Scene 1, layer=char, frame=1, Line 1 Clip events are permitted only for movie clip instances" but my dude is a movie clip!
-
My character is fine until I move at which point it gets completely stretched out
-
How could i make a simple attack like shooting or slashing with a sword?
And also how could i make platforms for the player to jump on?
-
@PhoneHouseholdHacker make sure its as2
Does anyone know how to make it so when your character stops moving it goes to the 1st frame of the walk cycle so he not like mid walk stopping all the time. Great tutorial as well btw you earned a sub.
insidethesnake 3 months ago
@insidethesnake - Check out my reply to ThunderSpam - you should see it above. (:
smittyguitarplyr 3 months ago
Help, I messed up with the direction of the character and it walks backwards, how do I flip it without it flashing between the backwards picture and the corrected picture
Charlie12292001 7 months ago
@Charlie12292001 - Find the if(Key.isDown(Key.LEFT)) { and if(Key.isDown(Key.RIGHT)) { sections of the code. Under these statements you'll see '_xscale = -scale;' and '_xscale = scale;' respectively. You want to swap the negative (-) symbol in front of 'scale' from one to the other.
smittyguitarplyr 7 months ago