Ho problemi nel recuperare i valori del campo da un database Bento usando Applescript:
Sto usando il seguente codice per ottenere le voci ma non riesco a ottenere le celle o i campi associati alle voci. Qualcuno può indicarmi la giusta direzione:
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