troyjack
05-04-2004, 06:39 PM
Hi
I'm trying to make a form in MX04 containing four comboBoxes. All I need is the selections from the comboBox to be displayed in another frame with a label ( Wall Color = Blue). Here's my code on the submit button so far:
on (release) {
var input = new LoadVars();
input.size = size.getValue();
input.wallColor = wallColor.getValue();
input.roofColor = roofColor.getValue();
input.trimColor = trimColor.getValue();
Now what do I do? I've tried many different things, but nothing works. I did something similar to this once before, but the results were sent to an email address instead of a dynamic text box within the same website and it worked fine. I used this code:
input.send("http://www.website.com/sendmail1.php", "_self", "GET");
I figured just changing this to target the dynamic text box would work, but it doesn't.
Can anyone please help me? I'm sure it's something simple that I'm not seeing.
Thank You
troy
I'm trying to make a form in MX04 containing four comboBoxes. All I need is the selections from the comboBox to be displayed in another frame with a label ( Wall Color = Blue). Here's my code on the submit button so far:
on (release) {
var input = new LoadVars();
input.size = size.getValue();
input.wallColor = wallColor.getValue();
input.roofColor = roofColor.getValue();
input.trimColor = trimColor.getValue();
Now what do I do? I've tried many different things, but nothing works. I did something similar to this once before, but the results were sent to an email address instead of a dynamic text box within the same website and it worked fine. I used this code:
input.send("http://www.website.com/sendmail1.php", "_self", "GET");
I figured just changing this to target the dynamic text box would work, but it doesn't.
Can anyone please help me? I'm sure it's something simple that I'm not seeing.
Thank You
troy