Name
SetFontColor -- change the color of the current font
Synopsis
SetFontColor(color)
Function
This function changes the color of the current font to the one specified by color which must be an RGB value.

New in Hollywood 2.5: Color can also be an ARGB value for alpha-blended text.

Note that starting with Hollywood 9.0, the color you pass to this function will also be set as the current bullet color. If you would like to use a different color, call the SetBulletColor() function.

Inputs
color
RGB or ARGB color specification
Example
SetFontColor(#GRAY)
This code sets the font color to some kind of grey.


SetFontColor(ARGB(128, #RED))
The above code sets the font color to half-red. The background will then shine through the text at a ratio of 50% (128=50% of 255).

Show TOC