Difference between revisions of "Server-monitor.as"

From Organic Design wiki
(add blank movie clip)
(z order)
Line 1: Line 1:
 +
// blank movie clip
 +
createEmptyMovieClip( 'graph', 1 );
 +
with (graph) {
 +
_x = 0;
 +
_y = 0;
 +
_height = width;
 +
_width = height;
 +
}
 +
 
// Textbox
 
// Textbox
 
createTextField( 'rc', 1, 0, 0, width, height );
 
createTextField( 'rc', 1, 0, 0, width, height );
Line 11: Line 20:
 
}
 
}
  
// blank movie clip
+
 
createEmptyMovieClip( 'graph', 1 );
 
with (graph) {
 
_x = 0;
 
_y = 0;
 
_height = width;
 
_width = height;
 
}
 
  
  

Revision as of 02:59, 24 March 2006

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

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



function reduce() { }