-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gmsearch and update for new release
- Loading branch information
1 parent
9601595
commit 3fd0818
Showing
5 changed files
with
57 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#SingleInstance, force | ||
|
||
^!=:: ; ctrl+alt+= clears search in GM | ||
; winid := WinExist() | ||
if WinExist("ahk_exe gmw.exe") | ||
{ | ||
winid := WinExist("ahk_exe gmw.exe") | ||
} | ||
if WinExist("ahk_exe mstsc.exe") | ||
{ | ||
winid := WinExist("ahk_exe mstsc.exe") | ||
} | ||
; MsgBox %winid% ; debugging only | ||
if winid | ||
{ | ||
InputBox, var, Name, Name to Search For | ||
WinActivate | ||
WinActivate | ||
WinWaitActive, , , 1 | ||
If ErrorLevel | ||
{ | ||
MsgBox, 8208, Error, WinWaitActive Timed Out, cancelling | ||
return | ||
} | ||
} else { | ||
MsgBox, 8208, Not Running, GoldMine is not running, cancelling | ||
return | ||
} | ||
Click, 200, 90 ; clicks in search field of GM | ||
SendInput, ^a%var%{Enter} ; selects all and clears text | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\3CX.exe" | ||
Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\GMSearch.exe" | ||
Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\HipChat Scripts.exe" | ||
rem Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\GMSearch.exe" | ||
Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\Quick Status Change.exe" | ||
rem Start "" "C:\Program Files (x86)\Quest Integration\QI Tools\Window Switching.exe" |