方法介绍
方法名称:获取按钮标题内容
语法:getButtonText(handle,id)
功能说明:获取当前窗口中指定id的按钮的标题,可以在点击事件或者加载完成事件中获取
参数说明:handle 是当前窗口的句柄
方法例子
function onLoadEvent(handle)
local title = getButtonText(handle,"idButton")
print("idButton title:"..title)
end
showUI("myui.ui",600,600,onLoadEvent);