Difference between revisions of "Server-monitor.as"
From Organic Design wiki
(still didn't fix it though :-() |
m |
||
Line 1: | Line 1: | ||
// blank movie clip | // blank movie clip | ||
− | createEmptyMovieClip( 'graph', | + | createEmptyMovieClip( 'graph', 100 ); |
with (graph) { | with (graph) { | ||
_x = 0; | _x = 0; | ||
Line 16: | Line 16: | ||
// Textbox | // Textbox | ||
− | createTextField( 'rc', | + | createTextField( 'rc', 1, 0, 0, width, height ); |
with (rc) { | with (rc) { | ||
_alpha = 30; | _alpha = 30; |
Revision as of 04:16, 24 March 2006
// blank movie clip createEmptyMovieClip( 'graph', 100 ); with (graph) { _x = 0; _y = 0; _height = _root.width; _width = _root.height; lineStyle( 2, 0x00ff00, 100 ); }
for ( i = 0; i < 800; i += 3 ) { graph.moveTo( i, 0 ); graph.lineTo( i, Math.random() * _root.height ); } //graph.nextFrame();
// 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() { }