Estoy teniendo problemas para obtener los valores de los campos de una base de datos de Bento usando Applescript:
Yo'mn utilizando el siguiente código para obtener en las entradas, pero no soy capaz de conseguir en las celdas o campos asociados con las entradas. Puede alguien me apunte en la dirección correcta:
tell application "Bento"
repeat with i from 1 to count of libraries
set theName to name of library i
log theName
if theName is equal to "Reconnaissance site report" then
log "The library has been found"
set theLibraryProperties to properties of library i
log theLibraryProperties
tell library i
repeat with j from 1 to count of entries
set theEntryName to id of entry j
set theEntryProperties to properties of entry j
log theEntryName
log theEntryProperties
end repeat
end tell
end if
end repeat
end tell