Criei um script de ação de pasta no Applescript, que pode fazer exatamente o que você deseja. Copie e cole-o em um novo Applescript e salve-o como um Aplicativo (sem um diálogo inicial!) Em "/ Library / Scripts / Folder Action Scripts /". Você pode anexá-lo a qualquer pasta (provavelmente sua pasta ~ / Downloads /) clicando com o botão direito do mouse na pasta e selecionando "configurar ações da pasta" no menu suspenso de serviços. Ative as ações da pasta e deixe o script assistir a pasta.
O que o script basicamente faz é reagir aos itens descartados na pasta à qual está anexado e, se o item descartado for do tipo: "Imagem", ele anexa a Imagem como um volume através da ferramenta de linha de comando "hdiutil".
Você pode configurar seu comportamento definindo as propriedades openWindow e makeFrontmost no script; isso também pode ser feito clicando duas vezes no script depois de salvá-lo como um aplicativo - ele perguntará em dois diálogos qual deve ser o comportamento padrão.
Eu espero que isso ajude,
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 o tipo de arquivo colocado em uma pasta
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 precisa ser "Imagem de disco" em vez de "Imagem"