Difference between revisions of "Server-monitor.as"
From Organic Design wiki
m |
(add blank movie clip) |
||
| Line 10: | Line 10: | ||
htmlText = '<font color="#00ff00">Hello World :-)</font>'; | htmlText = '<font color="#00ff00">Hello World :-)</font>'; | ||
} | } | ||
| + | |||
| + | // blank movie clip | ||
| + | createEmptyMovieClip( 'graph', 1 ); | ||
| + | with (graph) { | ||
| + | _x = 0; | ||
| + | _y = 0; | ||
| + | _height = width; | ||
| + | _width = height; | ||
| + | } | ||
| + | |||
function reduce() { | function reduce() { | ||
} | } | ||
Revision as of 02:58, 24 March 2006
// 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 :-)'; }
// blank movie clip createEmptyMovieClip( 'graph', 1 ); with (graph) { _x = 0; _y = 0; _height = width; _width = height; }
function reduce() { }



