Hier ist ein Beispiel Apple dass die Sätze position
von window 1
dem Quick Time Player zu {533, 118}
, wenn es läuft und das window
existiert.
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
Dies kann als Skript oder Anwendung gespeichert oder als Service in einen Automator- Workflow integriert und bei Bedarf mit einer Tastenkombination versehen werden.
Hier ist ein Beispiel für AppleScript , mit dem Sie die {x, y}
position
Informationen als durch Leerzeichen getrennten Wert in ein display dialog
Feld eingeben können :
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
Beachten Sie, dass Sie festlegen können , default answer "533 118"
an default answer ""
, wenn Sie nicht über einen Standardwert gesetzt werden soll.