Estoy tratando de escribir un AppleScript para usarlo con Mail (en Snow Leopard) para guardar adjuntos de imágenes de mensajes a una carpeta. La parte principal de la AppleScript es:Correo "No se puede continuar" para una función de AppleScript
property ImageExtensionList : {"jpg", "jpeg"}
property PicturesFolder : path to pictures folder as text
property SaveFolderName : "Fetched"
property SaveFolder : PicturesFolder & SaveFolderName
tell application "Mail"
set theMessages to the selection
repeat with theMessage in theMessages
repeat with theAttachment in every mail attachment of theMessage
set attachmentFileName to theAttachment's name
if isImageFileName(attachmentFileName) then
set attachmentPathName to SaveFolder & attachmentFileName
save theAttachment in getNonexistantFile(attachmentPathName)
end if
end repeat
end repeat
end tell
on isImageFileName(theFileName)
set dot to offset of "." in theFileName
if dot > 0 then
set theExtension to text (dot + 1) thru -1 of theFileName
return theExtension is in ImageExtensionList
end if
return false
end isImageFileName
Cuando se ejecuta, me sale el error:
error "Mail got an error: Can’t continue isImageFileName." number -1708
donde el error -1708 es:
Event wasnt handled by an Apple event handler.
Sin embargo, si copiar/pegar el isImageFileName()
en otra secuencia de comandos como:
property ImageExtensionList : {"jpg", "jpeg"}
on isImageFileName(theFileName)
set dot to offset of "." in theFileName
if dot > 0 then
set theExtension to text (dot + 1) thru -1 of theFileName
return theExtension is in ImageExtensionList
end if
return false
end isImageFileName
if isImageFileName("foo.jpg") then
return true
else
return false
end if
funciona bien. ¿Por qué Mail se queja de esto?
En otras palabras, es un problema de espacio de nombres y alcance. Excelente. –
Espero que en algún momento mientras sigo aprendiendo AppleScript, tales cosas dejarán de tomar un tiempo desproporcionado :) En este punto, me parece que tengo que escribir muchas más líneas en AS para la funcionalidad comparable de otros idiomas. –