| 38 | | ui_element = ui.create( "mywindow" ); |
| 39 | | local result |
| 40 | | ui_element:find("yes").on_click = function(self) result = true; self:destroy() end |
| 41 | | ui_element:find("no").on_click = function(self) result = false; self:destroy() end |
| 42 | | ui:run_modal( ui_element ) |
| | 38 | function run_mywindow() |
| | 39 | ui_element = ui.create( "mywindow" ); |
| | 40 | ui_element:find("yes").on_click = function(self) self:destroy(true) end |
| | 41 | ui_element:find("no").on_click = function(self) self:destroy(false) end |
| | 42 | return ui.run_modal( ui_element ) |
| | 43 | end |
| | 44 | }}} |