我有我的應用程序的性質,我叫busy
腳本Cocoa應用程序性能
<property name="busy" code="mybs" type="boolean" access="r" description="Is application busy?">
<cocoa key="isBusy"/>
</property>
而且sdef字典我的NSApplication類與isBusy
訪問
- (BOOL)isBusy
{
return NO;
}
腳本
tell application "MyApplication"
properties
end tell
和
tell application "MyApplication"
busy
end tell
做工精細和busy
財產是假的,但劇本
busy of application "MyApplication"
返回錯誤
error "MyApplication got an error: Can’t make |busy| into type specifier." number -1700 from |busy| to specifier
哪裏是我的錯?
我不知道答案,但有時你需要明確使用「get」命令。當這種情況發生時,我認爲這只是一個令人費解的問題。那麼「忙於......」的工作呢? – regulus6633
不,與沒有'get'相同的錯誤 – Dmitry
如果你想要一行代碼:'告訴應用程序「MyApplication」變得忙碌。「只是你知道。 – v1Axvw