View Single Post
  #7 (permalink)  
Old Jul 26th, 2007, 17:07
bmcc81 bmcc81 is offline
New Member
Join Date: Jul 2007
Location: Quebec
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Post Re: Help changing Scroll Menu Values

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
Reply With Quote