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