gokussjultimate's Comments

Game comments and reviews

Shootorial #1

Oct. 19, 2008

0

fixed it

Shootorial #1

Oct. 19, 2008

0

class Ship extends MovieClip { var velocity; function onLoad() { velocity = 10; } function onEnterFrame() { if( Key.isDown(Key.RIGHT) ) { _x = _x + velocity; } } is my code I get two erros conserning line 2 and 17 Ship.as line2 Statement block must be terminated by '}' ship.as line 17 Syntax error.