Ecco un esempio AppleScript che imposta il position
di window 1
di Quick Time Player su {533, 118}
, se è < em> in esecuzione e window
esiste.
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
Può essere salvato come script o applicazione o incorporato in un Automator flusso di lavoro come servizio e assegnato una scelta rapida da tastiera , se preferisci.
Ecco un esempio AppleScript che puoi inserire {x, y}
position
info come valore separato dallo spazio in display dialog
dialogo :
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
Tieni presente che puoi impostare default answer "533 118"
su default answer ""
, se non desideri impostare un valore predefinito.