Voici un exemple AppleScript qui fixe le position
de window 1
de Quick Time Player a {533, 118}
si c'est en cours d'exécution et le window
existe.
if application "QuickTime Player" is running then
try
if (count windows of application "QuickTime Player") is greater than 0 then
tell application "System Events" to set position of window 1 of application process "QuickTime Player" to {533, 118}
end if
end try
end if
Cela peut être sauvegardé comme un script o application ou incorporé dans un Automator flux de travail en tant que service et attribué un raccourci clavier si vous préférez.
Voici un exemple AppleScript que vous pouvez entrer dans le {x, y}
position
l'information en tant que valeur séparée par un espace dans un display dialog
boîte :
if application "QuickTime Player" is running then
try
if (count windows of application "QuickTime Player") is greater than 0 then
tell application "QuickTime Player"
set theReply to (display dialog "Move window to position, e.g.: 533 118" default answer "533 118" buttons {"Cancel", "OK"} default button 2 with title "Enter Windows X Y Coordinates")
end tell
tell application "System Events" to set position of window 1 of application process "QuickTime Player" to {word 1 of text returned of theReply as integer, word 2 of text returned of theReply as integer}
end if
end try
end if
Notez que vous pouvez définir default answer "533 118"
a default answer ""
si vous ne voulez pas qu'une valeur par défaut soit définie.