The colours in the left column are used in ZAMMIN.com frame by frame animation.
the ones from the column to the right are for basic clips.
*Since ActionScript includes a function, that changes symbols' colors randomly using mathematical function:
function getRandomColor ():ColorTransform
{
var red:Number = (Math.random() * 512) - 255;
var green:Number = (Math.random() * 512) - 255;
var blue:Number = (Math.random() * 512) - 255;
return new ColorTransform(1,1,1,1,red,green,blue,0);
}
There is no specific colour to be represented in the colour scheme above.
0 comments:
Post a Comment