Thanks for the quick response,
This is actually what I had used:
//--------------------------------------------------------//
//--------------------------------------------------------//
// FUNCTION TO MAKE THE MP3 MENU SCROLL ------------------//
//--------------------------------------------------------//
- Code: Select all
function mover()
{
if(_ymouse > 250 && _ymouse < 365)
{
var xdist = _xmouse - Stage.width/2;
this._x -= xdist / 15;
}
else
{
if(_xmouse > centerX - 250)
{
this._x -= speed;
}
else
{
this._x += speed;
}
}
if (this._x>= -200)
{
this._x = -1325;
} else {
if (this._x<= -1325)
{
this._x = -201;
}
}
I'm going to try and implement what you have gaven me. See if I can get her going with this. But if you still have any siggestions I'd be more then happy to hear them.
Thanks,
bmcc81
