标题: 询问问题 [打印本页] 作者: 袁静 时间: 2016-8-12 14:30 标题: 询问问题 请求大神帮我看一下下面这一段是什么意思
dim buttvalue
buttvalue=swfwindow(xx).swfwindow(xx).swfbutton(xx).getroproperty("disabled")
if buttvalue=0 then
swfwindow(xx).swfwindow(xx).swfbutton(xx1).click
else
swfwindow(xx).swfwindow(xx).swfbutton(xx2).click
end if作者: 若尘_51 时间: 2016-8-12 14:37
'定义一个变量buttvalue
dim buttvalue
'将swfbutton(xx)的"disabled"属性值赋给变量buttvalue
buttvalue=swfwindow(xx).swfwindow(xx).swfbutton(xx).getroproperty("disabled")
'判断buttvalue值,如果为0,则点击swfbutton(xx1)按钮,其他值则点击swfbutton(xx2)按钮
if buttvalue=0 then
swfwindow(xx).swfwindow(xx).swfbutton(xx1).click
else
swfwindow(xx).swfwindow(xx).swfbutton(xx2).click
end if