Applescript를 사용하여 Bento 데이터베이스에서 필드 값을 가져 오는 데 문제가 있습니다.
다음 코드를 사용하여 항목을 가져 오지만 항목과 관련된 셀 또는 필드를 얻을 수 없습니다. 누구든지 올바른 방향으로 나를 가리킬 수 있습니까?
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