请求大神帮我看一下下面这一段是什么意思
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
'定义一个变量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