Changes the tag of an existing GUI window, that has previously been opened with
GuiOpen(). It is possible to update only one certain sub-window by passing child_id and target. The tag will also be set for the children of the target window. Returns true if a window was found.
See the
GUI documentation for further explanations.
var menu =
{
BackgroundColor =
{
Std = RGB(0, 0, 255),
GoGreen = RGB(0, 255, 0)
}
};
var menuID = GuiOpen(menu);
GuiUpdateTag("GoGreen", menuID)
Opens a blue screen and then makes it go green.