Simple AS correction

okay need help this doesn’t work:
the scroll() function is supposed to scroll 4 clips named num1,num2… inside the “wholemovie” MC. The function is called from an onEnterFrame problem but it won’t scroll - warum ?


function scroll() {
	for (a=1; a<5; a++) {
		_root.wholemovie["num"+a]._x += (_root._xmouse-400)/20;
	}
}