write your name at the end of the list if you think this game needs badges: NEDpack, sk8punk99, CometFrost, Heat_X, SeanTres, Shimrra_3, Corrathrocks, blastx10,H3llRaiSeR, brainisdead, 1piefan, Katten141,frostmike, DCPLAY800, ThunderBlitz ,Saturnz, Meloney, KonstPerm, atsu, Wasdo87, Xinter,dante466, ncgirl1010, fredoob, DrunkenPunch, mercian, Hyp3r4nkk4, PUPIL68, Zkills, Zkills, AND ZKILLS!!!! OMG!!!, Linknomisuess,DragoonWind, JamesLeeMidget, ArmoredSaint, Breide,tomthecat97,MegaOracleZ,toni7926, TrikerX3, Tearon, Violet Worm
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;
}
}
}
is what i typed and I cant get the ship to move. when i firsted tested it it wouldnt move form left to right by itself someone please help me understand how to do it.