private function changeColor():void
{
holder.setStyle( "backgroundColor", getRandomColor() );
labelField.setStyle( "color", getRandomColor() );
}
private function getRandomColor():uint
{
return randomValue() << 16 ^ randomValue() << 8 ^ randomValue();
}
private function randomValue():Number
{
return (Math.random() * 512) - 255;
}