Stop th Auto Scroll! Help!

Hello all,

I need some help with removing the auto scroll from this action scripting code and I can not seem to make it stop. Can someone please offer some expert help? See below:

function moveRight()
{
isRight = false;
var _loc1 = thumbBlock;
if (_loc1.targetX == startX - len * spaceX)
{
_loc1._x = _loc1.targetX = startX;
_loc1.targetX = _loc1.targetX - spaceX;
}
else
{
_loc1.targetX = _loc1.targetX - spaceX;
} // end else if
} // End of the function
function moveLeft()
{
isRight = true;
var _loc1 = thumbBlock;
if (_loc1.targetX == startX)
{
_loc1._x = _loc1.targetX = startX - len * spaceX;
_loc1.targetX = _loc1.targetX + spaceX;
}
else
{
_loc1.targetX = _loc1.targetX + spaceX;
} // end else if
} // End of the function
stop ();
stopAllSounds ();
goLink = [];
goLink[0] = “10.html”;//Image button linkage 01
goLink[1] = “20.html”;//Image button linkage 02
goLink[2] = “30.html”;//Image button linkage 03
goLink[3] = “40.html”;//Image button linkage 04
goLink[4] = “50.html”;//Image button linkage 05
goLink[5] = “60.html”;//Image button linkage 06
goLink[6] = “70.html”;//Image button linkage 07
startX = 30;//Thumb image location (X)
startY = 25;//Thumb image location (Y)
spaceX = 225;//Thumb image 02 location (row)
showNum = 4;//Number of thumb images displayed per page
imgURL = “image/img”;//Thumb image file path
nowSelect = 0;
bigimg.loader.loadMovie(“image/img” + nowSelect + “.jpg”);//Thumb image file path
len = goLink.length;
isRight = true;
thumbBlock.thumbImg._visible = false;
thumbBlock._x = thumbBlock.targetX = startX;
thumbBlock._y = startY;
thumbBlock.onEnterFrame = function ()
{
this._x = this._x + 2.000000E-001 * (this.targetX - this._x);
};
prevBtn.onRelease = function ()
{
for (var _loc1 = 0; _loc1 < len + showNum; ++_loc1)
{
thumbBlock[“thumbImg” + _loc1].gotoAndStop(1);
} // end of for
timer.gotoAndPlay(1);
moveLeft();
};
nextBtn.onRelease = function ()
{
for (var _loc1 = 0; _loc1 < len + showNum; ++_loc1)
{
thumbBlock[“thumbImg” + _loc1].gotoAndStop(1);
} // end of for
timer.gotoAndPlay(1);
moveRight();
};
k = 0;
var i = 0;
while (i < len + showNum)
{
var _mc = thumbBlock.thumbImg.duplicateMovieClip(“thumbImg” + i, i);
_mc._x = spaceX * i;
_mc._y = 0;
_mc.no = k;
_mc.screen.loadMovie(imgURL + k + “.jpg”);
_mc.onRollOver = function ()
{
};
_mc.onRollOver = function ()
{
for (var _loc2 = 0; _loc2 < len + showNum; ++_loc2)
{
this._parent[“thumbImg” + _loc2].gotoAndStop(1);
} // end of for
this.gotoAndPlay(2);
nowSelect = this.no;
};
_mc.onRollOut = function ()
{
for (var _loc2 = 0; _loc2 < len + showNum; ++_loc2)
{
this._parent[“thumbImg” + _loc2].gotoAndStop(1);
} // end of for
this.gotoAndStop(1);
nowSelect = this.no;
};
_mc.onRelease = function ()
{
getURL(goLink[this.no], “_blank”);//Target frame for image button linkages
};
_mc.onEnterFrame = function ()
{
if (this.isOver == true)
{

} // end if
};
if (k == len - 1)
{
k = 0;
}
else
{
++k;
} // end else if
++i;
} // end while
init();

Thanks!!