Server-monitor.as

From Organic Design wiki
Revision as of 04:26, 24 March 2006 by Nad (talk | contribs) (simplify (tested and works in flash))

// blank movie clip createEmptyMovieClip( 'graph', 100 ); graph.lineStyle( 2, 0x00ff00, 100 );

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

// Textbox createTextField( 'rc', 1, 0, 0, width, height ); with (rc) { _alpha = 30; selectable = true; _quality = 'BEST'; border = false; multiline = true; wordWrap = true; html = true; htmlText = 'Hello World :-)'; }



function reduce() { }