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.

A background animation for my AS3 sound visualization. Created in AF CS5.5

Frame by frame animation (109 frames overall)