-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathTest.ahk
66 lines (37 loc) · 1018 Bytes
/
Test.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
#SingleInstance Force
^r::Reload
Space::Send {Enter}
!Space::Send {Space}
#IfWinActive ahk_class Chrome_WidgetWin_0
;LButton::Send ^{LButton}
;^LButton:Send {LButton}
RButton::Send {RButton}{Sleep 50}{Down 4} ;{Enter}
Del::Send ^{F4}
Right::Send ^{Tab}
Left::Send ^+{Tab}
; GoSub AutoRun
; #Include C:\Users\Scott\Shared Stuff\AutoHotKey\Utilities\AutoReload.ahk
; ^t::
; AutoRun:
; ; ****************************
; ; Insert your test code here:
; ; ****************************
; Return
; ; ; Test how "closure" works in a function:
; ; TestFunc("hello")
; ; TestFunc("what?")
; ; TestFunc("scott")
; ; Return
; ; TestFunc(param1) {
; ; SetTimer TestFuncLabel, -100
; ; static sparam1
; ; sparam1 := param1
; ; Return
; ; TestFuncLabel:
; ; MsgBox sparam1: %sparam1%
; ; Return
; ; }
; ; ****************************
; ; ****************************
; ; ****************************
; #Include C:\Users\Scott\Shared Stuff\AutoHotKey\Start Up\#Includes\GUIUniqueDefault().ahk