No matter what I do I can't get the backround to scroll, I keep getting this message:
The class 'Background' needs to be defined in a file whose relative path is 'Background.as'.
and:
Statement block must be terminated by '}'
and:Syntax error.
I have my backround code like this:
class ackground extends MovieClip
{
function onEnterFrame()
{
_x -= 1;
if(_x < -2110)
{
_x = 0;
}
}
Could some one help?