Sunday, May 6, 2012
Saturday, April 14, 2012
Color scheme for AS3 sound visualisation
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.Thursday, April 12, 2012
Subscribe to:
Posts (Atom)