ok first off the source files link on the first part doesnt work. second my score keeper wont keep score, and last my health bar doesnt do anything. ive checked over and over again but i dont know what to do
i did that but my problem is that it doesnt move at all... this is what i put
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;
}
}
}