Color2 Property



 
The Color2 property contains the bar color to fade in.


Syntax

    [color=] SiteKiosk.Plugins("SiteCash").ProgressBarSettings.Color2
Possible Values
    ColorValue that retrieves the second color.

    The property is read only.
Remarks
    If the Gradient property is true, this is the color the first color fades in.
    ColorValue: An RGB (Red, Green, Blue) 32-bit color value that defines a solid color. Each of the Red, Green, Blue portions represents the color intensity between 0 and 255 (or 0x00 to 0xff hexadecimal). The RGB color value can be calculated: ColorValue = Red + Green*256 + Blue*65536. Please note that this representation differs from HTML-color values which are hexadecimal RRGGBB.
Examples
    The following example shows the second color in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").ProgressBarSettings.Color2);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top