-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMS Paint Hotkeys.ahk
257 lines (229 loc) · 3.81 KB
/
MS Paint Hotkeys.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance Force
; Made in AutoHotkey Version 1.1.33.09
; by TechnicJelle (https://github.com/TechnicJelle/My-AutoHotKey-Scripts)
#IfWinActive, ahk_class MSPaintApp
hotkeysEnabled := True
p:: ;pencil
if(hotkeysEnabled) {
Send {Alt}1
reload
} else {
Send p
}
return
f:: ;fill bucket
if(hotkeysEnabled) {
Send {Alt}2
reload
} else {
Send f
}
return
^t:: ;text
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}3
KeyWait, LButton, D
KeyWait, LButton, U
hotkeysEnabled := False
; waits until text editing is done
KeyWait, LButton, D
KeyWait, LButton, U
hotkeysEnabled := True
Send {Alt}6
} else {
Send {Ctrl}t
}
return
e:: ;eraser
if(hotkeysEnabled) {
Send {Alt}4
reload
} else {
Send e
}
return
c:: ;colour picker
if(hotkeysEnabled) {
Send {Alt}5
reload
} else {
Send c
}
return
^r up:: ;rect select
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}6
reload
} else {
Send {Ctrl}r
}
return
^+r up:: ;free select
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
keywait, Shift ;wait until shift is released
Send {Alt}7
reload
} else {
Send {Ctrl}{Shift}r
}
return
^+t up:: ;transparent selection
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
keywait, Shift ;wait until shift is released
Send {Alt}8
reload
} else {
Send {Ctrl}{Shift}t
}
return
^i up:: ;invert selection
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}9
reload
} else {
Send {Ctrl}i
}
return
b:: ;brush
if(hotkeysEnabled) {
Send {Alt}09{Enter}
reload
} else {
Send b
}
return
1:: ;line thickness 1
if(hotkeysEnabled) {
Send {Alt}08{Enter}
reload
} else {
Send 1
}
return
2:: ;line thickness 2
if(hotkeysEnabled) {
Send {Alt}08{Down 1}{Enter}
reload
} else {
Send 2
}
return
3:: ;line thickness 3
if(hotkeysEnabled) {
Send {Alt}08{Down 2}{Enter}
reload
} else {
Send 3
}
return
4:: ;line thickness 4
if(hotkeysEnabled) {
Send {Alt}08{Down 3}{Enter}
reload
} else {
Send 4
}
return
z:: ;colour 1
if(hotkeysEnabled) {
Send {Alt}07{Enter}
reload
} else {
Send z
}
return
x:: ;colour 2
if(hotkeysEnabled) {
Send {Alt}06{Enter}
reload
} else {
Send x
}
return
l:: ;line tool
if(hotkeysEnabled) {
Send {Alt}HSH{Enter}
reload
} else {
Send l
}
return
r:: ;rulers
if(hotkeysEnabled) {
Send {Alt}VR{Enter}{Alt}H{Esc 2}
reload
} else {
Send r
}
return
g:: ;gridlines
if(hotkeysEnabled) {
Send {Alt}VG{Enter}{Alt}H{Esc 2}
reload
} else {
Send g
}
return
^= up:: ;zoom in
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}VI{Enter}{Alt}H{Esc 2}
reload
} else {
Send {Ctrl}=
}
return
^- up:: ;zoom out
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}VO{Enter}{Alt}H{Esc 2}
reload
} else {
Send {Ctrl}-
}
return
^0 up:: ;zoom 100%
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send {Alt}VM{Enter}{Alt}H{Esc 2}
reload
} else {
Send {Ctrl}0
}
return
^+z up:: ;redo
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
keywait, Shift ;wait until shift is released
Send ^y
reload
} else {
Send {Ctrl}{Shift}z
}
return
m:: ;mirror
if(hotkeysEnabled) {
Send {Alt}HROH
reload
} else {
Send m
}
return
^q up:: ;quit
if(hotkeysEnabled) {
keywait, Ctrl ;wait until control is released
Send !{F4}
reload
} else {
Send {Ctrl}q
}
return