-
Notifications
You must be signed in to change notification settings - Fork 0
/
DCLAN - Bookmarks.ahk
96 lines (71 loc) · 2.48 KB
/
DCLAN - Bookmarks.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
#Persistent
#SingleInstance force
#NoEnv
DetectHiddenText, On
DetectHiddenWindows, On
;======================================================
; Dustin's Personal Autohotkey Notes:
; # Win Key
; ! Alt Key
; ^ Control Key
; + Shift Key
; Send
; Sendinput
; Sendraw
; Sendinput {raw}
; WinWait [, WinTitle, WinText, Seconds, ExcludeTitle, ExcludeText] | Waits until the specified window exists.
; WinActivate
; If WinActive
; WinWaitActive [, WinTitle, WinText, Seconds, ExcludeTitle, ExcludeText]
; WinWaitNotActive [, WinTitle, WinText, Seconds, ExcludeTitle, ExcludeText]
; WinMove, WinTitle, WinText, X, Y [, Width, Height, ExcludeTitle, ExcludeText]
; Click 100, 100 (deprecated?)
; MouseClick, left, 100, 100
; Run
; RunWait ; Waits until proram loads
; KB: http://www.autohotkey.com/docs/KeyList.htm
;======================================================
;======================================================
;= MASTER MENU
;= Submenu actually gets typed below its contents, not above.
;= Icons are not required but add some visual flare. They must however be pointed to a file location to work. If these files get renamed or removed it kills the whole script.
;======================================================
Menu, SubMenuLinks, Add, Secure CRT, LaunchSecureCRT
; MENU --->
Menu, MasterMenu, Add, Links, :SubmenuLinks
;======================================================
;= MASTER MENU (Cont.)
;= Bound to Middle Mouse Button
;======================================================
MButton:: ;
; Reset variables
Agent:=
Owner:=
FirstOccurance:=
LastOccurance:=
Count:=
Node:=
Summary:=
Menu, MasterMenu, Show ; i.e. press the middle mouse button/mousewheel to show the menu.
Return
;======================================================
;= FUNCTIONS ; Called by other hotkeys / scripts
;======================================================
Donothing:
Return
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip,
return
;======================================================
;= FUNCTIONS - Links
;======================================================
LaunchSecureCRT:
Run C:\Users\MEMOD002\AppData\Local\VanDyke Software\Clients\SecureCRT.exe
Return
=======================================================
; OTHER HOTKEYS
=======================================================
^+s:: ; [This will reload autohotkey]
Reload
Return