Server-monitor.as

From Organic Design wiki
Revision as of 03:48, 20 March 2006 by Rob (talk | contribs) (make a long line)

// Set up async connection with server server = new LoadVars(); server.title = 'RC-Summary'; // wiki page to request server.onLoad = function(success) { if (success) { rc.htmltext="hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello "; } };

// Textbox createTextField( 'rc', 1, 0, 0, 190, 200 ); with (rc) { selectable = false; _quality = 'BEST'; border = false; multiline = true; wordWrap = true; html = true; }


// Per-frame function function reduce() {

// Make request on some regular cycle which seems about right

       server.sendAndLoad( '/wiki/index.php', server, 'GET' );

}