[App] Vibrate On Connect - SmartPhones Only

Search This thread

3aragka

Senior Member
Feb 16, 2009
52
5
A tiny script (Mortscript installed needed) to run it minimized / close if already running.
Code:
wnd = "Vibrate On Connect"
prc = "vocProject.exe"
prcpath = "\program files\VOC\vocProject.exe"

if(ProcExists( prc ) = 1)
    If ( Question( "Disable " & wnd & "?" ) = YES )
        Close(wnd)
		#Kill( prc )
    EndIf
Else
    Run( prcpath )
	WaitForActive( wnd, 10 )
	if (WndExists(wnd) = 1)
		minimize(wnd)
	else
	endif
EndIf
 

Top Liked Posts