Page 1 of 1

use laptop trackpad to draw

Posted: 20 May 2017, 14:20
by jeeswg
Is it possible to use a laptop trackpad to draw?

It works with a finger but not with other physical objects. What's so special about a finger? Why doesn't it work with other physical objects.

Thanks for reading.

Re: use laptop trackpad to draw

Posted: 11 Oct 2022, 17:42
by LAPIII
I used a stylus on my trackpad in paint. I just clicked the pencil and using AHK to simulate holding the left mouse button:

Code: Select all

^y::Send % "{Click " . ( GetKeyState("LButton") ? "Up}" : "Down}" )

I was able to draw with my stylus on the trackpad.

Re: use laptop trackpad to draw

Posted: 22 Oct 2022, 08:41
by relaxman
A trackpad requires a change in capacitance to identify the coordinates. Physical objects don't create this and therefore it won't work.