Con suerte, esto debería funcionar independientemente de la versión del sistema operativo, pero se ha probado en 10.6.8:
- Abrir Automator
- Elija crear una Acción de Carpeta
- Elija su carpeta de fotos como la carpeta para trabajar
- Elige Utilidades -> Ejecutar AppleScript y arrástralo al panel de la derecha
- Pegue el código siguiente en el panel Ejecutar AppleScript
- Guarde la acción de la carpeta y pruébela.
on run {input, parameters}
`tell application "Finder"
set the_folder to container of (item 1 of input) as alias
if window 1 exists then
set the target of window 1 to the_folder
else
reveal the_folder
end if
--Send the Esc key to exit the previous quick-look, if there is one
tell application "System Events"
key code 53
end tell
delay (1)
--select the new file
select input as alias
activate
activate window 1
delay (1)
--Activate full screen quick look on the selected file
tell application "System Events"
keystroke "y" using {command down, option down}
end tell
end tell
return input`
end run
Nota : El script podría tener algunos elementos innecesarios, pero al intentar retocarlo a menudo dejaba de funcionar. ¡Siéntase libre de probar por su cuenta!