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
tg12 - 26 May 2006 22:14 GMT
var t2_2=_root.con01.t2_2;
Motion Maker - 31 May 2006 17:20 GMT
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

Signature
Lon Hosford
www.lonhosford.com
May many happy bits flow your way!
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