i tried that but still doesn't work. Here's what i put in.
class Ship extends MovieClip
{
var velocity;
function onLoad()
{
velocity = 10;
}
function onEnterFrame()
{
_x = _x + velocity;
}
}
the .fla is called game.fla and the .as is called Ship.as The symbol and it's class are Ship. Any suggestions?