Welcome to the beginner flash tutorial! this will show a step-to-step process for new flash users. if you are just new to flash, or are confused about tools or making buttons, you are welcomed in. i would strongly recommend new flash programmers to know these basic functions so you can eventually make your own games yourself! please pm me if you have any problems. here is the code for the moving o…show morewelcome to the beginner flash tutorial! this will show a step-to-step process for new flash users. if you are just new to flash, or are confused about tools or making buttons, you are welcomed in. i would strongly recommend new flash programmers to know these basic functions so you can eventually make your own games yourself! please pm me if you have any problems. here is the code for the moving object part in as 3.0. class object extends movieclip { var velocity; function onload() { velocity = 10; } function onenterframe() { if( key.isdown(key.right) ) { _x = _x + velocity; } if( key.isdown(key.left) ) { _x = _x – velocity; } if( key.isdown(key.up) ) { _y = _y – velocity; } if( key.isdown(key.down) ) { _y = _y + velocity; } } }show less
kongregate - This tutorial is for flash beginners, if you are beyond ..
kongregate - Good tutorial for beginners. easy to understand and follow.
kongregate - More of a tutorial than a game. has plenty useful things ..
kongregate - Some beginner flash tutorials.
if you want me to make any ..
kongregate - Just a simple flash tutorial i made some time ago. it’s ..
kongregate - This is the newest flash tutorial i have made.
its mainly ..
kongregate - This is a tutorial for flash 8 this is not a game if you ..
kongregate - Maze tutorial for rookies!! do it in only 5 steps!!
and ..
Comments