0

我无法从 AppleScript(Mavericks 上的 Excel for Mac 2011)重置 Excel 状态栏。

设置值有效:

tell application "Microsoft Excel"
    set status bar to "Test"
end tell

但是重置它会写入false而不是写入Ready状态栏:

tell application "Microsoft Excel"
    set status bar to false
end tell

这是一个错误吗?

4

1 回答 1

0

我想你只是想删除你的文字?如果是这样,你应该能够做到这一点..

tell application "Microsoft Excel"
    set status bar to ""
end tell
于 2014-08-07T17:31:32.873 回答