Change Player Size
Watch this video in a new window

Flash RPG Tutorial Part 1:Creating and Moving a Character

flash rpg tutorial: character movement to see parts 2 & 3 Goto http://www.qzpstudios.com or my channel  
 
Customize

QuickList(0)

Featured Videos

Upgrade to Flash Player 10 for improved playback performance. Upgrade Now or get more info.
140 ratings
Sign in to rate
64,053 views
Want to add to Favorites? Sign In or Sign Up now!
Want to add to Playlists? Sign In or Sign Up now!
Want to flag a video? Sign In or Sign Up now!

Statistics & Data

Loading...

Video Responses (2)

Sign in to post a Comment

Text Comments (278)   Options

Loading...
MrPrinceX06 (1 week ago) Show Hide
 0
Marked as spam
does any knows how to make an animation that moves..
we are making an rpg game but this is our problem.. hope for your answer..

by the way i use the:

if(Key.isDown(Key.UP){
_x+=7;
gotoAndPlay(1);
}
Comment(s) marked as spam Show
olsern (1 month ago) Show Hide
 0
Marked as spam
Adobe flash, their homesite.

Buy the adobepacage.
aicrop02 (1 month ago) Show Hide
 0
Marked as spam
what platform is he using?
gamerman012345 (1 month ago) Show Hide
 0
Marked as spam
how do I fix this? =

Clip events are permitted only for movie clip instances
olsern (1 month ago) Show Hide
 0
Marked as spam
Change the "symbol!" to movieclip instead of graphic or button.
MrPrinceX06 (1 week ago) Show Hide
 0
Marked as spam
@gamerman012345 you must convert your instance to a movie clip.. convert to symbol and choose movie clip.
sk8r2000 (1 week ago) Show Hide
 0
Marked as spam
@gamerman012345
Give your character an instance name of "char". Then use this script:

onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
_root.char._x -= speed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
_root.char._x += speed;
}
}
badmonkeyballplayer (2 months ago) Show Hide
 0
Marked as spam
In AS3, you are only aviable to enter codes in the frames, for example:
if I name one symbol's instance name into "tea", you may enter the code into the fram like this:
tea.codes
badmonkeyballplayer (2 months ago) Show Hide
 0
Marked as spam
It can't work yet, but anyway, thanks!

Would you like to comment?

Join YouTube for a free account, or sign in if you are already a member.