/ Published in: AppleScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
-- function appIsRunning() by sebastien.wains - Google Project Hosting http://bit.ly/gb43CT - from SampleAppleScripts - reduxcomputing-proximity - http://bit.ly/fCoJxY on appIsRunning(appName) tell application "System Events" to (name of processes) contains appName end appIsRunning -- USAGE: if appIsRunning("Finder") then...