Server-monitor.as

From Organic Design wiki
Revision as of 03:33, 24 March 2006 by Rob (talk | contribs) (remove text box)

// blank movie clip createEmptyMovieClip( 'graph', 1 ); with (graph) { _x = 0; _y = 0; _height = width; _width = height; }

graph.lineStyle( 2, 0x00ff00 );

for ( i=0; i<800; i+=3 ) { graph.moveTo( i, 0 ); graph.lineTo( i, Math.random*height ); }



function reduce() { }