AppleScript:未定义变量

时间:2017-07-29 09:33:46

标签: function variables applescript handler var

我有一个从plist文件中提取的变量(这是我将变量从一个脚本传递到另一个脚本的最佳方法)

工作正常,如果我做一个随机的“显示通知var1”我得到了正确的结果。

但是,如果我想在函数ex中传递变量。

set var1 to ""
set the plistfile_path to "~/Desktop/_DATA.plist"

tell application "System Events"
    set p_list to property list file (plistfile_path)
    -- read the plist data

    set var1 to value of property list item "DSID" of p_list as text
end tell

[...]

on makeStatusBar()
    set bar to current application's NSStatusBar's systemStatusBar

    set StatusItem to bar's statusItemWithLength:-1.0

    -- set up the initial NSStatusBars title
    StatusItem's setTitle:var1
    -- set up the initial NSMenu of the statusbar
    set newMenu to current application's NSMenu's alloc()'s initWithTitle:"Custom"

    newMenu's setDelegate:me (*
    Requied delegation for when the Status bar Menu is clicked  the menu will use the delegates method (menuNeedsUpdate:(menu)) to run dynamically update.


    *)

    StatusItem's setMenu:newMenu

end makeStatusBar

我有这个错误

  

“未定义变量var1。变量   var1未定义。 (-2753)“

我该如何解决这个问题?提前谢谢你。

2 个答案:

答案 0 :(得分:1)

我不确定您是否提供了所有相关代码。我无法重现你的问题。

我的方法是在脚本编辑器中调试脚本并添加一些Try块以便更好地进行错误管理。

有问题的变量既未在您的代码段中查询也未定义,所以任何人都可以为您做这件事。

干杯,ralf

答案 1 :(得分:1)

var1位于本地范围内。将其声明为属性:

property var1 : ""

或者将其声明为全局:

global var1
set var1 to ""

其他变量theDSIDFromPlist未出现在代码中。