-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoHotkey.ahk
128 lines (104 loc) · 2.09 KB
/
AutoHotkey.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
;Filemaker and Editor HotKey Actions
;Replicates QuickCursor on Mac OSX
;Win-e
#e::
Clip = %Clipboard%
Clipboard =
FName = FMPro_Clip_001.fmfn
FileDelete, C:\Users\rkantor\Documents\RJK\%FName%
IfWinExist, Specify Calculation
{
WinActivate, Specify Calculation
ControlFocus, Edit1
Send, ^a
Keywait, a
}
IfWinExist, Edit Custom Function
{
WinActivate, Edit Custom Function
ControlFocus, Edit3
Send, ^a
Keywait, a
}
IfWinExist, Edit Expression
{
WinActivate, Edit Expression
ControlFocus, Edit1
Send, ^a
Keywait, a
}
IfWinExist,"Show Custom Dialog" Options
{
WinActivate, "Show Custom Dialog" Options
ControlFocus, Edit2
Send, ^a
Keywait, a
}
Send, ^c
ClipWait, 2
Loop, parse, clipboard, `n, `r ; Specifying `n prior to `r allows both Windows and Unix files to be parsed.
{
FileAppend, %A_LoopField% `n, C:\Users\rkantor\Documents\RJK\%FName%
}
Run, C:\Program Files (x86)\IDM Computer Solutions\UltraEdit\Uedit32.exe C:\Users\rkantor\Documents\RJK\%FName%
Clipboard = %Clip%
return
;Win-f
#f::
Clip = %Clipboard%
Clipboard =
Send, ^s
Send, ^a
KeyWait, a
Send, ^c
ClipWait
Send, !x
IfWinExist, Edit Custom Function
{
WinActivate, Edit Custom Function
ControlFocus, Edit3
Send, ^a
Keywait, a
Send, ^v
Sleep 100
}
IfWinExist, Specify Calculation
{
WinActivate, Specify Calculation
ControlFocus, Edit1
Send, ^a
Keywait, a
Send, ^v
Sleep 100
}
IfWinExist, Edit Expression
{
WinActivate, Edit Expression
ControlFocus, Edit1
Send, ^a
Keywait, a
Send, ^v
Sleep 100
}
IfWinExist,"Show Custom Dialog" Options
{
WinActivate, "Show Custom Dialog" Options
ControlFocus, Edit1
Send, ^a
Keywait, a
Send, ^v
Sleep 100
}
Clipboard = %Clip%
return
; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.
#z::Run www.autohotkey.com
^!n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return