GuiUpdateTag GUI 7.0 OC bool string tag The new tag for the window and children. int gui_id The ID of the gui window that was returned by GuiOpen(). int child_id Optional. If given, the sub-window of the menu_id window with the matching child_id will be updated. Should be used together with the parameter target. object target Optional. Should be used together with child_id. The target of the sub-window that will be updated. 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. GUI DocumentationGuiAction_CallGuiAction_SetTagGuiCloseGuiOpenGuiUpdate Zapper2014-10