Page 1 of 1

surface pen as clicker

Posted: 19 Aug 2018, 11:18
by tnals
Hi, I am trying to have my surface pen as a clicker.
I want it to perform press tab key 5 times then enter when I click the pen.
#F20::
can anyone help me?
Thank you in advance. :thumbup:

Re: surface pen as clicker

Posted: 19 Aug 2018, 15:06
by tnals1
I tried
#f20:: send, {tab, 5}
send {enter}
return

still not working. I tried like 100 diffent script but not working.
what should I do here?

Re: surface pen as clicker

Posted: 19 Aug 2018, 18:03
by Scr1pter
Hi,
I neither have a Surface nor a pen.
If #F20:: is really the right hotkey,
then it would be:

Code: Select all

#F20:: ; Win+F20
Send {Tab 5} ; Press 5x Tab key
Sleep, 5 ; 5 ms delay (optional)
Send {Enter} ; Press Enter key
return ; Return from subroutine
Regards