forked from TaranVH/2nd-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Photoshop_Functions.ahk
51 lines (44 loc) · 1.62 KB
/
Photoshop_Functions.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
SetWorkingDir, C:\AHK\2nd-keyboard\support_files
#NoEnv
;Menu, Tray, Icon, shell32.dll, 283 ; this changes the tray icon to a little keyboard!
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input
#SingleInstance force ;only one instance of this script may run at a time!
#MaxHotkeysPerInterval 2000
#WinActivateForce ;https://autohotkey.com/docs/commands/_WinActivateForce.htm
;-------------------------------------------------------------------------
; HELLO PEOPLES!
; IF YOU ARE NEW TO AUTOHOTKEY, YOU MUST AT LEAST TAKE THE FOLLOWING TUTORIAL:
; https://autohotkey.com/docs/Tutorial.htm
;
; You will need to know some basic scripting to custom tailor most
; of these scripts to your own machine, if you want to use them!
; VERY IMPORTANT NOTE:
; This file works in tandem with ALL_MULTIPLE_KEYBOARD_ASSIGNMENTS.ahk.
; All the functions from HERE are actually CALLED from keyboard shortcuts
; in THAT script. I had to do it this way because of the Stream Deck(s)...
; But you can put your key bindings and functions in the same script if
; you want.
;------------------------------------------------------------------------
#IfWinActive ahk_exe Photoshop.exe
;fix stupid requirement to hold CTRL for photoshop zooming...
-::
send, ^- ;zoom out
sleep 5
send, {ctrl up} ;I've had issues with modifier keys getting stuck
return
=::
send, ^= ;zoom in
sleep 5
send, {ctrl up} ;I've had issues with modifier keys getting stuck
return
F9::
send, ^-
sleep 5
send, {ctrl up} ;I've had issues with modifier keys getting stuck
return
F10::
send, ^=
sleep 5
send, {ctrl up} ;I've had issues with modifier keys getting stuck
return