Here's a little script I did this morning so it could check if ICE3 is opened. That way it doesn't send an error message if the apps is not loaded.
I'm now looking to include some verification to check on which screen ICE3 is on, so we can launch the right script at the right time :)Code:if appIsRunning("ICEł") then
tell application "System Events"
tell process "ICEł"
click button "Preferences" of group 1 of window 1
end tell
end tell
end if
on appIsRunning(appName)
tell application "System Events" to return name of every process contains appName
end appIsRunning
Never been so happy to do some scripting :)

