I need to find a way to randomly scroll horizontally and vertically, plus or minus a set number of pixels per second in each dimension, when the mouse has been idle for a set amount of time. Any ideas on how to achieve this?

Thanks in advance,

Robert

link|improve this question
1  
What have you tried? What has/hasn't worked? – Sasha Chedygov Dec 3 '09 at 6:28
feedback

1 Answer

You can add a mousemove event listener, and each time the mouse moves, you could use setTimeout to start a counter. After the counter has finished you could safely say that the mouse hasn't been moved. Note that you would need to keep resetting the counter if the user continues moving it (ie. with clearTimeout)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.