
thumbBackgroundInactiveColor [read-write]
ThumbGrid Version: ThumbGrid 1 and 2
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
The color of a thumbnail's background, in hexadecimal format, when that thumbnail is "inactive." Meaning, the default state of the thumbnail when it's neither "active" nor in a rollover state. The thumbnail background is only visible when thumbPadding is greater than 0.
The hexadecimal color system uses six digits to represent color values. Each digit has sixteen possible values or characters. The characters range from 0 to 9 and then A to F. For example, black is 0x000000; white is 0xFFFFFF.
The default value is 0x363636.
public function get thumbBackgroundInactiveColor():uint
public function set thumbBackgroundInactiveColor(value:uint):void
The following example sets all thumbnail backgrounds to white when inactive (their default state).
my_tg.thumbBackgroundInactiveColor = 0xFFFFFF;