Skip to content

Instantly share code, notes, and snippets.

View royiversen's full-sized avatar

Roy Iversen royiversen

View GitHub Profile
@johnlindquist
johnlindquist / CoronaLauncher.vbs
Created August 8, 2011 22:49
A script to launch or focus and refresh the Corona Simulator
Set WshShell = WScript.CreateObject ("WScript.Shell")
Set colProcessList = GetObject("Winmgmts:").ExecQuery ("Select * from Win32_Process")
'Check if Corona is already running
For Each objProcess in colProcessList
If objProcess.name = "Corona Simulator.exe" then
vFound = True
End if
Next
If vFound = True then