Code check?

(FLASH MX PRO)

Can someone tell me why this doesn’t work?

INDEX - with container…LOADS…
Static_profile.SWF (button in this movie has the following code)

[COLOR=darkred]ON BUTTON[/COLOR]
on (release)
{_root.container_MC.loadMovie
(“PROFILE2.swf”);
}
}

This code is on the movie being loaded. I had it working on friday! :expressionless:

[COLOR=darkred]PROFILE2.SWF[/COLOR]
onClipEvent (load) {
this._x = 300;
}
onClipEvent (enterFrame) {
if (_root.SUB._x>440) {
_root.SUB._x += -30 ;
} else if (_root.SUB._x>-30) {
this._x += (-40-this._x)/8; _root.SUB._x += (0-_root.SUB._x) /2;
}
}

Many thanks=)