> 16 & 0xFF;
}
private function gChannel(value:int):int {
return value >> 8 & 0xFF;
}
private function bChannel(value:int):int {
return value >> 0 & 0xFF;
}
private function rgbToInt(r:int, g:int, b:int):int {
return r << 16 | g << 8 | b << 0;
}
]]>
{colorPicker.selectedColor}
{rChannel(colorObj.color)}
{gChannel(colorObj.color)}
{bChannel(colorObj.color)}