Creé un script de Folder Folder en Applescript, que podría hacer exactamente lo que quieres.
Cópielo y péguelo en un nuevo Applescript, y guárdelo como una Aplicación (¡sin un diálogo de inicio!) En "/ Library / Scripts / Folder Action Scripts /".
Luego puede adjuntarlo a cualquier carpeta (probablemente su ~ / Descargas / carpeta) haciendo clic derecho en la carpeta y seleccionando "configurar acciones de carpeta" en el menú desplegable de servicios. Active Acciones de carpeta y deje que el script vea la carpeta.
Lo que el script básicamente hace es reaccionar en los elementos que se han soltado en la carpeta a la que está adjunto y si el elemento que se ha soltado es de tipo: "Imagen" adjunta la imagen como un volumen a través de la herramienta de línea de comandos "hdiutil".
Puede configurar su comportamiento configurando las propiedades openWindow y makeFrontmost en el Script; Esto también se puede hacer haciendo doble clic en el Script después de que lo haya guardado como una aplicación; luego, preguntará en dos diálogos sobre cuál debería ser su comportamiento estándar.
Espero que esto ayude,
Asmus
property openWindow : true
property makeFrontmost : true
on run
display dialog "Do you want to bring the Finder to the front after new items are added?" buttons {"Don't Activate", "Activate"} default button 2
if the button returned of the result is "Don't Activate" then
set makeFrontmost to false
else
set makeFrontmost to true
end if
display dialog "Open Folder after adding new files?" buttons {"Don't Open", "Open"} default button 2
if the button returned of the result is "Don't Open" then
set openWindow to false
else
set openWindow to true
end if
end run
on adding folder items to thisFolder after receiving addedItems
repeat with i from 1 to number of items in addedItems
set itemKind to the kind of (info for item i of addedItems) as string
if itemKind is "Disk Image" then
set itemPath to (quoted form of POSIX path of item i of addedItems)
try
showImage(itemPath)
end try
end if
end repeat
end adding folder items to
on showImage(itemPath)
set volumeMountpointInfo to do shell script "/usr/bin/hdiutil attach " & itemPath & " | grep Volumes"
if (openWindow is true) then
if (makeFrontmost is true) then
tell application "Finder" to activate
end if
set currentDelim to text item delimiters
set text item delimiters to tab
set volumeMountpoint to POSIX file (text item 3 of volumeMountpointInfo)
set text item delimiters to currentDelim
tell application "Finder" to open folder volumeMountpoint
end if
end showImage
====
segundo Applescript para determinar el tipo de archivo colocado en una carpeta
On adding folder items to thisFolder after receiving addedItems
repeat with i from 1 to number of items in addedItems
set itemKind to the kind of (info for item i of addedItems) as string
display dialog itemKind
end repeat
end adding folder items to
Editado necesita ser "Imagen de disco" en lugar de "Imagen"