3

I'm looking for a way to slow down the mousedown movement when drawing a signature.

I think it would allow the user more control.

Is there any way to do this?

Ojen
  • 817
  • 12
  • 23
andyval
  • 31
  • 2
  • I presume you would need to control the users mouse pointer. This is not possible in javascript. For reference ... http://stackoverflow.com/questions/4752501/move-the-mouse-pointer-to-a-specific-position – Kevin Brydon Nov 30 '12 at 22:10
  • 1
    What do you mean by mousedown movement anyway? – Sir Dec 06 '12 at 05:55
  • Are you trying to slow down the mouse speed or to slow down how often mousedown is called? – Tom Feb 14 '13 at 02:18

1 Answers1

1

The mousemove events are generated by the browser, and thus you can't change these.

Thanos
  • 3,039
  • 2
  • 14
  • 28