Server-monitor.as

From Organic Design wiki
Revision as of 03:11, 20 March 2006 by Rob (talk | contribs) (red text)

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

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

// Logo attachMovie( 'xmlwiki', 'xmlwiki', 5 );

// Per-frame function function reduce() {

// Scrolling

// Make request on some regular cycle which seems about right if ( ++_root.ctr%400 == 1 ) { server.SWF = id0;

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

}

}