Catégories
Informatique

Apple Script / Automator : Vérifier si une application est lancée

Et hop le bout de code pour vérifier si une application tourne / est lancée grâce à de l’Apple Script !

on ApplicationIsRunning(appName)
	tell application "System Events" to set appNameIsRunning to exists (processes where name is appName)
	return appNameIsRunning
end ApplicationIsRunning

if ApplicationIsRunning("Spotify") then
	display dialog "Votre action se passé maintenant"
end if

Laisser un commentaire