View Single Post
  #16  
Old 03-05-2007, 04:58 PM
godofwarares godofwarares is offline
Webmaster
godofwarares's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 552
godofwarares is on a distinguished road
Send a message via ICQ to godofwarares Send a message via AIM to godofwarares Send a message via MSN to godofwarares Send a message via Yahoo to godofwarares
Quote:
Originally Posted by Angel_Light
I'm just curious, is there a way to make it add and minus speed using the mouse wheel?
Try this:

PHP Code:
function onMouseWheel()
{
     if (!(
this.speed+>= 10) && !(this.speed-<= 1))
     {
          
this.speed +=- mousewheeldelta;
     }

__________________
What signature? I see no signature?
Reply With Quote