Turning off a hotkey while typing text?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
z01ks

Turning off a hotkey while typing text?

07 Apr 2018, 16:55

Hi! I have improved my workflow tremendously in Photoshop by assigning a lot of frequently used or otherwise complicated shortcuts to simpler shortcuts. For example, I have ALT+Shift+RClick mapped to Q with the help of Autohotkey. I really like this, BUT... Now I can not type the letter Q when naming layers or entering any text in the program.

Is there a way around it? Thanks.
donovv
Posts: 108
Joined: 15 Apr 2017, 21:06

Re: Turning off a hotkey while typing text?

07 Apr 2018, 17:38

Code: Select all

f1:: ;f1 will make your hotkeys active/inactive 
	toggle := !toggle
return
	
#if toggle
q::msgbox working
TestB
Posts: 8
Joined: 06 Apr 2018, 07:06

Re: Turning off a hotkey while typing text?

08 Apr 2018, 14:21

I have the same question and problem :)

Not with Photoshop but with another software..

I use this command

r::Send ^r

Now I can't type the letter r to rename something :)
Georgie Munteer

Re: Turning off a hotkey while typing text?

08 Apr 2018, 14:33

i guess thats why its custom to create hotkeys that are not one letter use ^q or #q
FreshwaterShrimp

Re: Turning off a hotkey while typing text?

08 Apr 2018, 15:25

Code: Select all

pause
return

Q::!+RButton
return

\::suspend
Pressing the \ key will toggle it on and off and, if you start the script with pause, it will start in an off state.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Bing [Bot], Google [Bot], Tech Stuff and 383 guests