0
我很努力地開始使用Applescript和Bento。起初,我想獲得庫的名字和我試圖使用下面的腳本:使用Applescript獲取Bento中庫的名稱
tell application "Bento"
repeat with i from 1 to count of libraries
tell library i
try
set theName to name of library i
log theName
end try
end tell
end repeat
end tell
在一個典型的錯誤消息是:
get name of library 1 of library 1
--> error number -1728 from «class GLib» 1 of «class GLib» 1
任何人都可以指導我在正確的方向去Applescript和Bento。