про - 255 я взял из

Код:
redOffset:Number (default = 0) — The offset value for the red color channel, in the range from -255 to 255.
greenOffset:Number (default = 0) — The offset value for the green color channel, in the range from -255 to 255.
blueOffset:Number (default = 0) — The offset for the blue color channel value, in the range from -255 to 255.
alphaOffset:Number (default = 0) — The offset for alpha transparency channel value, in the range from -255 to 255.
в любом случае.
код что вы предоставили я малость не понял
hex:uint - тут мы передаем код RGB?
этот момент

Код AS3:
red: ((hex & 0xFF0000) >> 16),
green: ((hex & 0x00FF00) >> 8),
blue: ((hex & 0x0000FF))
нельзя отобразить как-то в стиле

Код AS3:
var red:uint = и тп
?