Contents
Strategic Partner Links
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
SDK Examples
Prompts the user to pick a color using the default color-chooser dialog box.
This scripting function has no Client Permission restrictions.
system.gui.chooseColor(initialColor [, dialogTitle])
Color initialColor - A color to use as a starting point in the color choosing popup.
String dialogTitle - The title for the color choosing popup. Defaults to "Choose Color" [optional]
Color - The new color chosen by the user.
All
# This code would be placed in the actionPerformed event of a button, and would change the background color of the container the button was placed in. parent = event.source.parent newColor = system.gui.chooseColor(parent.background) parent.background = newColor