shuga  
                
                  
                    March 19, 2003, 10:02pm
                   
                  1 
               
             
            
              http://www.aaronsleeper.com/site.fla 
my mail form which can be found in the above fla at _root.window.content.mailform is not sending the variables to PHP like it’s supposed to
the PHP works fine and sends the mail to me but the only thing that comes in the mail is the text from the PHP code field names … like the things i typed in PHP to go before the contents of the variables that were supposed to be sent
so the variables are not getting from the text input fields in the flash movie … to the PHP script and to my email 
someone please help
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 19, 2003, 10:21pm
                   
                  2 
               
             
            
              i’m looking at your .fla now… 
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 19, 2003, 11:03pm
                   
                  3 
               
             
            
              ok…i got it.
I tried lots of different things, but I ended up redoing part of it.
I named all the instances 
I included the field mapping to the “post” action 
I changed the mc’s you have as send/clear into actual 
put this code on the buttons: 
 
on (release) {
	if (_root.window.content.mailform.name eq "" or _root.window.content.mailform.email eq "" or _root.window.content.mailform.message eq "") {
		_root.window.content.mailform.errortext.gotoAndStop(2);
	} else {
		loadVariablesNum("form.php", 0, "POST");
		_root.window.content.mailform.gotoAndStop(2);
		name = "";
		company = "";
		phone = "";
		email = "";
		subject = "";
		message = "";
	}
}
For some reason, and I’mnot 100% sure, but this code
Here’s the modified .fla:  www.unflux.com/site.fla 
Let me know if you have any questions about the changes I
Nice site btw. 
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 19, 2003, 11:54pm
                   
                  4 
               
             
            
              thanks very much for the compliment and the help i appreciate it
my button doesn’t bounce now 
i guess you can’t have everything
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 20, 2003, 12:23am
                   
                  5 
               
             
            
              well, what you do now, is load a movie clip inside the button’s
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 20, 2003,  4:24am
                   
                  6 
               
             
            
              you so lost me
what about the rollOut actions ?
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 20, 2003,  5:11am
                   
                  7 
               
             
            
              use actionscript to run the mc on and off like you would otherwise.
have a stop action in the middle, and on the out, run it
             
            
              
            
           
          
            
              
                system  
              
                  
                    March 20, 2003,  5:03pm
                   
                  8 
               
             
            
              not a bit.
it’s not a tween
how do i run it backwards