2011-07-10 34 views
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。

回答

0

原來這是我在使用AppleScript的錯誤:

tell application "Bento" 
repeat with i from 1 to count of libraries 
    set theName to name of library i 
    log theName 
end repeat 
end tell 
相關問題