Simple Window Example

This example explains how to create a simple window and show on the screen.

UI Model

{
    "windows": [
        {
            "name": "SimpleWindowExample",
            "title": "Simple Window Example",
            "left": 500,
            "top": 100,
            "width": 400,
            "height": 300
        }
    ]
}

Code

var exampleWindow = redui.createNewWindow("SimpleWindowExample");
exampleWindow.show();