Cela fonctionne même si la fenêtre est masquée par une autre.set windowVal to 0
tell application "Pro Tools" to activate
repeat until windowVal = 15
set windowVal to windowVal + 1
try
tell application "System Events"
tell application process "Pro Tools"
tell application "System Events"
click button "Enable Auto Preview Mode" of window windowVal of application process "Pro Tools"
end tell
end tell
end tell
end try
end repeat
Si vous avez plus de 15 fenêtres à l'écran vous pouvez adapter le scripte à la ligne "repeat until windowVal = 15" mais cela joue sur la rapidité de l'action. Plus il y a de fenêtres à l'écran plus le scripte doit "chercher" vu que cette fenêtre d'automation n'a pas de nom !
Bon Preview
Olivier