summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/test_popup.lua
blob: 156c09c78fd73c5eb7d60d49d2179c1d0629f30d (plain)
1
2
3
4
5
6
7
UI = require 'UI'
popup = UI.popup

response = popup:alert('This just has a Close button')
response = popup:alertOK(string.format('You said "%s", is that OK?', next(response)))
response = popup:alertYesCancel(string.format('You said "%s"', next(response)))
popup:tip(string.format('You said "%s"', next(response)))