Window:show() method


Show and activate the Window (events can now be fired).

Return value

This function returns no value.

Example

local ui = require "ui" -- create a simple window local win = ui.Window("Simple Window") -- shows the Window win:show() -- wait for 2sec before quitting sys.sleep(2000)