Difference between revisions of "Server-monitor.as"

From Organic Design wiki
(add dummy data file)
(red text)
Line 1: Line 1:
change = false;
 
  
 
// Set up async connection with server
 
// Set up async connection with server
Line 6: Line 5:
 
server.onLoad = function(success) {
 
server.onLoad = function(success) {
 
if (success) {
 
if (success) {
rc.htmltext="hello";
+
rc.htmltext="<font color=#ff0000>hello</font>";
 
}
 
}
 
};
 
};

Revision as of 03:11, 20 March 2006

// 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' );

}

}