Question : Movieclip Radio/check Buttons

Hello Experts,

I have made a flash form which emails me with a php script. I have know been asked to include 3 radio buttons which when selected are included in the email which is sent to me.

I have already made the radio buttons which are either on or off, but i am not sure how to continue or whether I have done them right.

I have attached the order.fla in a zip.

Many thanks,

Chris

Answer : Movieclip Radio/check Buttons

You could try the following instead:



And you'd send the php script the values... 0 if it's not checked, 1 if it's checked.

If this is a bit unclear, I can send you a *.fla sample of this.

-V
1:
2:
3:
4:
5:
6:
sendMC.onRelease = function() {
        Scheckone._currentframe==2?Scheckone.value = 1:Scheckone.value=0;
        Schecktwo._currentframe==2?Schecktwo.value = 1:Schecktwo.value=0;
        Scheckthree._currentframe==2?Scheckthree.value = 1:Scheckthree.value=0;
        getURL("myphp.php?Scheckone="+Scheckone.value+"&Schecktwo=+Schecktwo.value+"&Scheckthree="+Scheckthree.value);
}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us