Stacks API

Come build with us.
Stacks API v6 for Stacks 2.5


  <   Custom Controls Reference


Color — color

This content is open source. You can edit it and submit a pull request on GitHub.
This page is generated from this file.


© . YourHead Software all rights reserved.

Color — color

Overview

A color well.

When clicked the RapidWeaver shared color pallet is displayed. The selected color is converted to RGB and returned as a hex string.

Available: Stacks API v2

Prefix

The default prefix for the returned string is #, this means that if no prefix is specified then the returned color string will be a standard HTML RGB Hex string (e.g. #1F2F3F).

For some applications such as Flash the raw hex value is needed without the hash character prefix. Setting the prefix to the empty-string "" will return the six character hex value without any prefix (a format commonly used in Flash).




Default Value

The color the color well will be set to by default. If no color is provided Black will be used


Clear Value

When all the content is cleared out of a text input area (the user deletes all the text), the control will automatically fill with this value. This is useful for applications where a non-empty string is required.


ID

The ID for this control. This ID must be unique within this stack. The ID is used to refer to control's property. IDs should be alpha-numeric (dashes and underscores are allowed), but should not contain special characters.




Title

The title displayed next to the control. Long titles will be trancated, so keep it short.




Enable

Hide or show the control based on the value of another property.

Enables allow a stack to show only the controls needed by the user to achieve a specific task.

The enable dictionary defines the ID of another control and the value that other control must equal. When the other control's value is not equal to the provided value, this control is hidden.

Enable Dictionary

Warning: creating infinite loops in enable dependencies has undefined behavior but will likely result in a crash.




Tool Tip

The tooltip value is used to display hints for the user on the use of each control. If the function of the control is obvious, then a tooltip should be avoided. Simply re-displaying redundant information like the title has no value to the user.




© . YourHead Software all rights reserved.