Aquí hay un ejemplo AppleScript que establece el position
de window 1
de Reproductor de tiempo rápido a {533, 118}
Si se trata de corriendo y el 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
Esto se puede guardar como un script o aplicación o incorporada a un Automatizador flujo de trabajo como Servicio y se le asigna un atajo de teclado si lo prefiere.
Aquí hay un ejemplo AppleScript que puede entrar en el {x, y}
position
información como valor separado por espacios en un display dialog
caja :
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
Tenga en cuenta que puede establecer default answer "533 118"
a default answer ""
, si no quiere que se establezca un valor por defecto.