Ninja_Puding's Comments

Game comments and reviews

Shootorial #1

Sep. 03, 2009

0

sry it works only type class Ship 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; } } } that code in your actionscript data and save it...

Shootorial #1

Sep. 03, 2009

0

it works until the keboard thing -.-