Skip to content

Commit 3f0a7ef

Browse files
authored
Add files via upload
1 parent 82bca80 commit 3f0a7ef

24 files changed

+17028
-14244
lines changed

Data/AeroZoom_Alt.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Alt_x64.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Ctrl.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Ctrl_x64.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_MouseL.ahk

+847-699
Large diffs are not rendered by default.

Data/AeroZoom_MouseL_x64.ahk

+937-787
Large diffs are not rendered by default.

Data/AeroZoom_MouseM.ahk

+1,093-944
Large diffs are not rendered by default.

Data/AeroZoom_MouseM_x64.ahk

+1,093-944
Large diffs are not rendered by default.

Data/AeroZoom_MouseR.ahk

+934-785
Large diffs are not rendered by default.

Data/AeroZoom_MouseR_x64.ahk

+934-785
Large diffs are not rendered by default.

Data/AeroZoom_MouseX1.ahk

+923-773
Large diffs are not rendered by default.

Data/AeroZoom_MouseX1_x64.ahk

+923-773
Large diffs are not rendered by default.

Data/AeroZoom_MouseX2.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_MouseX2_x64.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Shift.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Shift_x64.ahk

+922-773
Large diffs are not rendered by default.

Data/AeroZoom_Win.ahk

+924-773
Large diffs are not rendered by default.

Data/AeroZoom_Win_x64.ahk

+924-773
Large diffs are not rendered by default.

Data/DisableUAC.ahk

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
; Run this as admin and compile this with RunAsAdmin
2+
3+
#NoTrayIcon
24

35
RegRead,OSver,HKLM,SOFTWARE\Microsoft\Windows NT\CurrentVersion,CurrentVersion
46
if (OSver<6.0) {

Data/OSD.ahk

+91-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
#SingleInstance Force
2+
#NoTrayIcon
3+
4+
; special part for zoom and off button
5+
specialParam = %1%
6+
If (specialParam="WinMagPanel")
7+
goto, WinMagPanel
8+
If (specialParam="ZoomItPanel")
9+
goto, ZoomItPanel
10+
If (specialParam="Off")
11+
goto, off
12+
If (specialParam="Off1")
13+
goto, off1
14+
If (specialParam="Off2")
15+
goto, off2
16+
If (specialParam="Sw1")
17+
goto, sw1
18+
If (specialParam="Sw2")
19+
goto, sw2
20+
; end of special part
221

322
RegRead,ZoomIncText,HKCU,Software\WanderSick\AeroZoom,ZoomIncTextOSD
423
RegRead,ZoomitColor,HKCU,Software\WanderSick\AeroZoom,ZoomitColorOSD
@@ -76,9 +95,9 @@ Exitapp
7695

7796
CaptureDisk:
7897
If (CaptureDisk=1) {
79-
CaptureDiskText=Cap2Disk On
98+
CaptureDiskText=Save Caps On
8099
} else if (CaptureDisk=2) {
81-
CaptureDiskText=Cap2Disk Off
100+
CaptureDiskText=Save Caps Off
82101
}
83102
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
84103
Gui, Color, EEAA99 ; any color
@@ -87,4 +106,74 @@ Gui, Font, s45, Verdana
87106
Gui, Add, Text, cLime, %CaptureDiskText%
88107
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
89108
Sleep, 700
109+
Exitapp
110+
111+
WinMagPanel:
112+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
113+
Gui, Color, EEAA99 ; any color
114+
WinSet, TransColor, EEAA99 165
115+
Gui, Font, s45, Verdana
116+
Gui, Add, Text, cLime, Magnifier Panel
117+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
118+
Sleep, 700
119+
Exitapp
120+
121+
ZoomItPanel:
122+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
123+
Gui, Color, EEAA99 ; any color
124+
WinSet, TransColor, EEAA99 165
125+
Gui, Font, s45, Verdana
126+
Gui, Add, Text, cLime, ZoomIt Panel
127+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
128+
Sleep, 700
129+
Exitapp
130+
131+
Off:
132+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
133+
Gui, Color, EEAA99 ; any color
134+
WinSet, TransColor, EEAA99 165
135+
Gui, Font, s45, Verdana
136+
Gui, Add, Text, cLime, Hotkeys normal
137+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
138+
Sleep, 700
139+
Exitapp
140+
141+
Off1:
142+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
143+
Gui, Color, EEAA99 ; any color
144+
WinSet, TransColor, EEAA99 165
145+
Gui, Font, s45, Verdana
146+
Gui, Add, Text, cLime, Hotkeys off (mouse)
147+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
148+
Sleep, 700
149+
Exitapp
150+
151+
Off2:
152+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
153+
Gui, Color, EEAA99 ; any color
154+
WinSet, TransColor, EEAA99 165
155+
Gui, Font, s45, Verdana
156+
Gui, Add, Text, cLime, Hotkeys off (all)
157+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
158+
Sleep, 700
159+
Exitapp
160+
161+
Sw1:
162+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
163+
Gui, Color, EEAA99 ; any color
164+
WinSet, TransColor, EEAA99 165
165+
Gui, Font, s45, Verdana
166+
Gui, Add, Text, cLime, Full View
167+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
168+
Sleep, 700
169+
Exitapp
170+
171+
Sw2:
172+
Gui, +LastFound -Caption +ToolWindow +AlwaysOnTop
173+
Gui, Color, EEAA99 ; any color
174+
WinSet, TransColor, EEAA99 165
175+
Gui, Font, s45, Verdana
176+
Gui, Add, Text, cLime, Mini View
177+
Gui, Show, w430 h150 x15 y60 AutoSize NoActivate, AeroZoom OSD
178+
Sleep, 700
90179
Exitapp

Data/OpenTray.ahk

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#SingleInstance force
2+
#NoTrayIcon
23

34
Drive, Eject
45
Sleep, 6000

Data/Tips_and_Tricks.txt

+23-20
Large diffs are not rendered by default.

Data/ZoomPad.ahk

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
; AeroZoom by wanderSick | http://wandersick.blogspot.com
22

33
#SingleInstance IGNORE ; dont set to force or ghost frames
4+
#NoTrayIcon
45

5-
Menu, Tray, Icon, %A_WorkingDir%\Data\AeroZoom.ico
6+
;Menu, Tray, Icon, %A_WorkingDir%\Data\AeroZoom.ico
67

78
; Check custom transparency setting
89
RegRead,padTrans,HKCU,Software\WanderSick\AeroZoom,padTrans

Data/_updateCheck.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ set vbsPath=%CD%
4444
set pathTemp=%temp%
4545

4646
:: declarations
47-
set searchItems="ws.az.32b" "ws.az.33" "ws.az.35" "ws.az.40"
47+
set searchItems="ws.az.33a" "ws.az.34" "ws.az.35" "ws.az.40"
4848

4949
:: set to %temp% to make it work on read-only medium
5050
set pathTemp=%temp%

0 commit comments

Comments
 (0)