Difference between revisions of "Server-monitor.as"
From Organic Design wiki
(Put "hello world" in it) |
m |
||
| Line 2: | Line 2: | ||
createTextField( 'rc', 1, 0, 0, width, height ); | createTextField( 'rc', 1, 0, 0, width, height ); | ||
with (rc) { | with (rc) { | ||
| − | selectable = | + | selectable = true; |
_quality = 'BEST'; | _quality = 'BEST'; | ||
border = false; | border = false; | ||
Revision as of 02:41, 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 :-)'; }
function reduce() {
}



