Je m'amuse donc avec AppleScript et je suis assez novice en la matière.
Comment faire pour que le script quitte les deux applications si :
- app1 et app2 sont en cours d'exécution
- ou si l'application 1 ou 2 est en cours d'exécution
- et les exécuter s'ils ne sont pas en cours d'exécution
Mon script :
if application "app" is running or "app2" is running then
tell application "app1" to quit
tell application "app2" to quit
else
tell application "app1" to activate
tell application "app2" to activate
end if