Hello everyone:
I have a submit section on my flash movie. http://www.lolomedia.com/menu6.html
I also have 3 frames in this movie.
Frame 1:
Yes or No radio button
Comments: text field
[COLOR=Red]next[/COLOR]
Frame 2:
[COLOR=Black]Yes[/COLOR] or No radio button
Comments: text field
**[COLOR=Red]next
[/COLOR]**Frame 3:
Yes or No radio button
Comments: text field
[COLOR=Red]submit[/COLOR]
I need to pass these values and send it to php.
How can i pass these variables from frame to frame and be able to submit all on Frame 3
Please help… this is my last piece on this project and then I’m finally done!
:ub:
this is my .fla if you need to download it
http://www.lolomedia.com/menu6.fla
easy, dont use frames. Or you can have the code in an actions layer so that all the sections are covered by one keyframe. In that code can be some variables you populate then send all at once:)
Thanks dude for the quick reply.
Could you please ellaborate on your feedback?
What do you mean by all in actions?..
Create different mc’s within a frame or something?
Could you show me an example or something?
Thanks.
by the way when i submit this form… only I get frame 3 results.
this is what i have on my code on frame 3
submitBtn.onRelease=function(){
onSubmit();
}
function onSubmit() {
Smessage1 = Smessage1.text;
gender1 = genderGroup1.getValue();
Smessage2 = Smessage2.text;
gender2 = genderGroup2.getValue();
Smessage3 = Smessage3.text;
gender3 = genderGroup3.getValue();
loadVariables("radio1.php",this,"POST");
loadMovieNum("goodbye.swf",40);
}
but again i have nothing on frame 1 or 2… i’m a little confused on how or where to put these values so i can send to my php.
thanks for your response! :thumb2: