18 lines
330 B
AutoHotkey
18 lines
330 B
AutoHotkey
|
InstallGhost()
|
||
|
{
|
||
|
SetTitleMatchMode, RegEx
|
||
|
windowTitle := "^Tobii Ghost$"
|
||
|
|
||
|
Run, "setup.exe",,,pid
|
||
|
WinWait % windowTitle,, 60
|
||
|
WinActivate % windowTitle
|
||
|
MouseClick, Left, 44, 694
|
||
|
MouseClick, Left, 330, 752
|
||
|
WinWaitNotActive
|
||
|
WinWait % windowTitle,, 20
|
||
|
MouseClick, Left, 563, 397
|
||
|
MouseClick, Left, 548, 493
|
||
|
}
|
||
|
|
||
|
InstallGhost()
|