Use LoadVars.sendAndLoad or LoadVars.send. Generally you want the
sendAndLoad so you can get a response back from the server script if it
succeeded or failed.
The docs for LoadVars and XML sendAndLoad methods:
XML
http://livedocs.macromedia.com/flash/8/main/00002879.html LoadVars
http://livedocs.macromedia.com/flash/8/main/00002336.html --
Lon Hosford
www.lonhosford.com May many happy bits flow your way!
[quoted text, click to view] "tg12" <webforumsuser@macromedia.com> wrote in message
news:e57ptm$iif$1@forums.macromedia.com...
Hi
I have form in flash with input text fields with Var field set to
t2_2
t3_2
t4_2
...
what i want to do when user enter values and press buton it should post
data(values) to aspx page - how can i do that ? i saw some tutorial but i
did
not help
what i did
on (release) {
getURL("sendMail.aspx", "_blank", "POST");
}
BUT IT DOES NOT POST values to aspx page
when i try
on (release) {
var t2_2=2;
getURL("sendMail.aspx", "_blank", "POST");
}
then i can access t2_2 value on aspx page, so what shoul i put before
getURL
so it will set values from texboxes