-
Notifications
You must be signed in to change notification settings - Fork 0
/
HotKeysGeneral.ahk
72 lines (54 loc) · 1.25 KB
/
HotKeysGeneral.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
#NoEnv ; Recommended for performance and compatibility with future AutoHo releases.; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
; Always on Top
^SPACE:: Winset, Alwaysontop, , A ; ctrl + space
return
; Disable Always on Top
!SPACE:: Winset, Alwaysontop, off , A
return
; Suspend AutoHotKe
#SPACE::Suspend ; Win + SPACE
return
#IfWinActive
#IfWinActive ahk_class AcrobatSDIWindow
{
$F1::
{
Send, +^H
MouseGetPos, xpos, ypos
;MouseClick, left, 2019, 314
MouseMove, xpos, ypos
; sleep 1000
; MouseMove, xpos, ypos
return
}
~MButton::
{
Send, +^H
;sleep 500
return
}
}
return
#IfWinActive ahk_exe MPManager.exe
LAlt & Tab::Send,{Alt down}{TAB down}{TAB up}{Alt up}{Alt down}{TAB down}{TAB up}{Alt up}
return
#IfWinActive
~MButton::Send, {Alt down}{TAB down}{TAB up}{Alt up}
;WinActivate, ahk_exe chrome.exe
return
IfWinActive ahk_exe chrome.exe
{
$F2::Send ^{PgUp} ; prev tab
$F3::Send ^{PgDn} ; next tab
}
return
$F4::Send, {Ctrl down}c{Ctrl up}
return
$F5::Send, {Alt down}{TAB down}{TAB up}{Alt up}
return
$F6::Send, {Ctrl down}v{Ctrl up}
return
$F7::Send, {Alt down}{Shift down}{Shift up}{Alt up}
return
#IfWinActive