J’utilise le code suivant pour forcer à quitter Word avec AppleScript :
tell application "System Events"
set appname to "Microsoft Word"
set the_process to the process appname
set pid to the unix id of the_process
end tell
if pid is not "" then do shell script ("kill -9 " & pid)
Est-ce qu’il y aurait moyen d’ajouter à ce script une commande (une condition) qui ferait en sorte que ce scripte s’exécute seulement si Word est ouvert. Merci.
tell application "System Events"
set appname to "Microsoft Word"
set the_process to the process appname
set pid to the unix id of the_process
end tell
if pid is not "" then do shell script ("kill -9 " & pid)
Est-ce qu’il y aurait moyen d’ajouter à ce script une commande (une condition) qui ferait en sorte que ce scripte s’exécute seulement si Word est ouvert. Merci.