Closes an existing GUI window, that has previously been opened with
GuiOpen(). It is possible to close only one certain sub-window by passing child_id and target. Returns true if a window was closed.
See the
GUI documentation for further explanations.
var menu =
{
left_part =
{
Right = "50%",
ID = 1,
BackgroundColor = RGB(255, 0, 0)
},
right_part =
{
Left = "50%",
ID = 2,
BackgroundColor = RGB(0, 255, 0)
}
};
var menuID = GuiOpen(menu);
GuiClose(menuID, 2, nil);
Opens a menu window consisting of two parts and then closes the right half.