input textboxes can be created by using the text-tool and then selecting the input option in properties, if you want you can enable “Show border around text”. For message you should set the input textbox to multiline. Give all your boxes an var (box1, box2…)
Give these actions to your frame:
[AS]
_root.box1 = “”;
_root.box2 = “”;
…
[/AS]
want to use php? place everything into a mc and call it formData
[AS]
formData.send(“phpfile.php”, “_blank”, “post”);
[/AS]
want to use asp or another ssa?
[AS]
getURL(“URL”, “”, “GET”);
[/AS]