Name
TintBrush -- tint brush (V1.5)
Synopsis
TintBrush(id, color, level)
Function
This function tints the brush specified by id with the RGB color specified by color at a level which ranges from 0 to 255.

Starting with Hollywood 2.0, level can also be a string containing a percent specification, e.g. "50%".

Note that if id specifies a palette brush, TintBrush() will just tint the palette colors which makes this function really fast when used with palette brushes.

Inputs
id
identifier of the brush to tint
color
a RGB color to use for tinting
level
tint level (0 to 255 or percent specification)
Example
TintBrush(1, #RED, 128)
The code above gives brush number 1 a red look.

Show TOC