Jump to content

Simple windowed application: Difference between revisions

Line 641:
}
}</lang>
 
 
=={{header|Lua}}==
<lang lua>require"iuplua"
l = iup.label{title="There have been no clicks yet."}
b = iup.button{title="Click me!"}
clicks = 0
function b:button_cb()
clicks = clicks + 1
l.title = "There have been " .. clicks/2 .. " clicks so far." --yes, this is correct.
end
dlg = iup.dialog{iup.vbox{l, b}, title="Simple Windowed Application"}
dlg:show()
 
if (not iup.MainLoopLevel or iup.MainLoopLevel()==0) then
iup.MainLoop()
end</lang>
 
=={{header|MAXScript}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.