asd

by Prid on February 24th, 2012
No notes
Syntax: ActionScript
Show lines - Hide lines - Show in textbox - Download
  1. function register(){
  2. sendVars = new LoadVars();
  3. sendVars.myMessage = "<font face='trebuchet_ms2' color='"+selected_color+"'><u>"+user_name+"</u>:</font> <font color='#6A6A6A' face='trebuchet_ms'>"+theMessage+"</font>";
  4. sendVars.sendAndLoad("conversation.php", responseVars, "POST");
  5.  
  6. responseVars = new LoadVars();
  7. responseVars.onLoad = function(success){
  8. if(success){
  9. if(this.response == "true"){
  10. // REGISTRATION SUCCESSFUL
  11. } else if(this.reponse == "false"){
  12. // USERNAME ALREADY TAKEN
  13. }
  14. } else {
  15. // FAILED TO CONNECT TO SERVER
  16. }
  17. }
  18. }
  19.  
  20. submit_btn.onPress = function(){
  21. register();
  22. }

Leave a Reply

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

Subscribe to this comment feed via RSS