Just got CS3 today and love many of the new features, however I’m having some issues with MC's that I was using as Buttons in AS2.

Here is the code I’m using for the buttons is AS2

Code:
ratesBtn.onRollOver = function() {
	ratesBtn.gotoAndStop("over");
	_root.ratesBtnHolder.gotoAndPlay("in");
}
ratesBtn.onRollOut = function() {
	ratesBtn.gotoAndStop("off");
	_root.ratesBtnHolder.gotoAndPlay("out");
}

When I export the movie now, I get this error and all the movies that contain motion tween within them just start looping, however each of them have stop(); tags within them

1120: Access of undefined property _root.

with the source as

_root.ratesBtnHolder.gotoAndPlay("in");


any iders????