asd

by Prid on February 24th, 2012
No notes
Syntax: ActionScript
Show lines - Hide lines - Show in textbox - Download
function register(){
	sendVars = new LoadVars();
	sendVars.myMessage = "<font face='trebuchet_ms2' color='"+selected_color+"'><u>"+user_name+"</u>:</font> <font color='#6A6A6A' face='trebuchet_ms'>"+theMessage+"</font>";
	sendVars.sendAndLoad("conversation.php", responseVars, "POST");
 
	responseVars = new LoadVars();
	responseVars.onLoad = function(success){
		if(success){
			if(this.response == "true"){
				// REGISTRATION SUCCESSFUL
			} else if(this.reponse == "false"){
				// USERNAME ALREADY TAKEN
			}
		} else {
			// FAILED TO CONNECT TO SERVER
		}
	}
}
 
submit_btn.onPress = function(){
	register();
}

Leave a Reply

Note: XHTML is allowed. Your email address will never be published.

Subscribe to this comment feed via RSS