- Found in:
- SkyUI
eventOnOptionColorAccept(inta_option, inta_color)
Description
GitHub Wiki Description (SkyUI)
Called when a new color has been accepted.
Modify the internal state of the selected option, then use the option setters to apply the changes to the active page.
Documentation String
Called when a new color has been accepted
Parameters
inta_option
GitHub Wiki Description (SkyUI)
The option ID.
inta_color
GitHub Wiki Description (SkyUI)
The accepted color (0xRRGGBB).
Examples
Auto-Generated Example
Scriptname MyCoolScript extends SKI_ConfigBase
event OnOptionColorAccept(int a_option, int a_color)
Debug.trace("Event received - OnOptionColorAccept: a_option = " + a_option + " a_color = " + a_color)
endEvent