la tua soluzione ha funzionato per me! Ho provato a svenderlo per darti dei crediti, ma sono un principiante. Inoltre l'ho modificato un po 'come segue per soddisfare le mie esigenze.
tell application "System Events"
if not (exists window "Quick Look") of process "Finder" then
activate application "Finder"
keystroke "y" using command down
end if
end tell
tell application "System Events" to tell process "Finder"
if not (exists window "Quick Look") then ¬
with timeout of 1 second
repeat until (exists window "Quick Look")
end repeat
end timeout
set [W, H] to size of scroll area 1 --(desktop)
tell window "Quick Look"
set [_w, _h] to size
set [_x, _y] to position
set position of it to [25, 50]
set size of it to [W - 50, H - 100]
end tell
end tell
Ho impostato la posizione Y su 50 perché penso che impostarlo su 0 faccia in modo che lo script tenti di mettere la finestra Quick Look dietro la barra dei menu, e non penso sia permesso. Mi piacerebbe perfezionarlo un po 'di più, ma non so come contattarti direttamente o se lo vedrai anche perché è un anno dopo. Quindi fammi sapere se vedi questo, grazie.