function onLoadEvent(handle)
end
function onClickEvent(handle,id)
--ui界面按钮点击事件
if id=="按钮id" then
--跳转网址
end
end
function onCloseEvent(handle)
end
function onSelectEvent(handle,id,idx,sel)
end
action,arr = showUIEx("script.ui",100,100,600,600,onLoadEvent,onClickEvent,onCloseEvent,onSelectEvent) |