我想检查程序中复选框的状态。当我编写一个if
语句来检查它的当前状态时,它会自动“检查”该框并继续第一个选项,即使它最初是错误的。下面的代码
def execute (sender)
if checkboxF = true
then
print label.stringValue = "Valid"
else
print label.stringValue = 'Invalid'
end
end
在我“执行”之前,未选中复选框,但是当代码运行时,它会自动“选中”该框,并仅继续使用第一个选项。
谢谢!