Tengo problemas para obtener los valores de campo de una base de datos de Bento utilizando Applescript:
No estoy usando el siguiente código para obtener las entradas pero no puedo acceder a las celdas o campos asociados con las entradas. ¿Alguien puede señalarme 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