HELPZ PLZ! I followed step by step, and when i move my ship, it moves the background with it! It's still scrolling, but it gets annoying trying to move and the whole background move too! help me fix this please! this is my background code:
class Background extends MovieClip
{
function onEnterFrame()
{
_x -= 1;
if(_x < -2110)
{
_x = 0;
}
}
}