-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain AHK.ahk
155 lines (91 loc) · 3.57 KB
/
Main AHK.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
#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.
; # -> Windows Key
; ! -> Alt Key
; ^ -> Control Key
; + -> Shift Key
#SingleInstance force
#Include, C:\Users\aayus\Documents\Macro Stuff\All Functions.ahk
#Include, C:\Users\aayus\Documents\Macro Stuff\Extra Keyboard.ahk
;; ================================ ;;
;; ================================ ;;
; ^F10::Pause ; Pauses the Script !!!!! PROBLEM !!!!!!
;^F10::RenameTemplate()
^F11:: HideShowTaskbar(hide := !hide)
^F12::Reload
;; ================================ ;;
;; ======= Utility - s ============ ;;
;; ================================ ;;
;; ================================ ;;
;; ======= E - MAIL IDs =========== ;;
;; ================================ ;;
;SetKeyDelay, 0 !!! CHECK THIS
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx PERSONAL
;; ================================ ;;
;; ================================ ;;
;; ================================ ;;
;; ============ CHROME ============ ;;
;; ================================ ;;
#IfWinActive ahk_exe chrome.exe
F1::Send, ^+{Tab} ; switches to LEFT active tabs
F2::Send, ^{Tab} ; switches to RIGHT active tabs
F3::Send, ^h ; Open History
F4::Send, ^j ; Open Downloads
F5::Send, ^w ; Close Current Tab
F6:: OpenPasskey() ;Reach Passwords !!!!! PROBLEM !!!!!!
return
;; ================================ ;;
;; ================================ ;;
;; ================================ ;;
;; ======== iZOTOPE RX 8 ========== ;;
;; ================================ ;;
#IfWinActive ahk_exe iZotope RX 8 Audio Editor.exe
F1::Send, ^E ;Export Audio
F2::Send, ^!S ;Save Overwrite
F3::Send, ^+W ;Close All Files
F4::Send, {Right}{Enter} ; helpful for closing all :: step 2
return
;; ================================ ;;
;; ================================ ;;
;; ================================ ;;
;; ======== ABLETON LIVE ========== ;;
;; ================================ ;;
#IfWinActive ahk_exe Ableton Live 11 Suite.exe
F1::Send, ^+R ;Export Music
^q::Send, ^l ; Looping Part
^w::Send, {BackSpace} ; delete key
return
;; ================================ ;;
;; ================================ ;;
;; ================================ ;;
;; =========== PHOTOSHOP ========== ;;
;; ================================ ;;
#IfWinActive ahk_exe Photoshop.exe
F1::Send, !+^W ;Export Image
; F2 ==> Convert to Smart Object
; F3 ==> Rasterize Layer
; F4 ==> Edit Contents
F5::Send, ^j ;Copy Layer
F6::Send, {BackSpace} ; Delete Layer
F7::Send, ^!+e ; Merge Visible Layers
return
;; ================================ ;;
;; ================================ ;;
;; ================================ ;;
;; ========== PREMIERE PRO ======== ;;
;; ================================ ;;
#IfWinActive ahk_exe Adobe Premiere Pro.exe
F1:: preset("05_Zoom In - 7%")
F2:: preset("07_Zoom In - Slightly")
F3:: preset("Noise Split")
F4:: preset("Neon Flickering")
F5:: preset("Lightning Flashes")
F6:: preset("Normal - Smooth Motion")
F7:: preset("Tele - Smooth Motion")
F8:: preset("Super Tele - Smooth Motion")
F9:: reachEffectsBox()
F12::Send, ^m ;Export Video
;; ================================ ;;
;; ================================ ;;