Groups | Blog | Home
all groups > flash (macromedia) > february 2004 >

flash (macromedia) : can't see variable values. Please help


DarryBoy
2/12/2004 10:19:40 PM
Please help.

I can't get any text field variable values from my flash form that posts to
cgi.

The following is my action script on my release button:
on (release) {
title = title.getValue();
name = name.getValue();
surname = surname.getValue();
aday = aday.getValue();
amonth = amonth.getValue();
ayear = ayear.getValue();
dday = dday.getValue();
dmonth = dmonth.getValue();
dyear = dyear.getValue();

loadVariablesNum("http://www.vineyardonballito.co.za/cgi-bin/reservation.cgi
", 0, "POST");
getURL("http://www.vineyardonballito.co.za/Test/thankYou.html");
}

All the above variables are combo box values except
name = name.getValue();
surname = surname.getValue();
The values from the combo boxes are posted but I can't see the text field
values.

Please help.

Jack
2/13/2004 2:14:40 AM

[quoted text, click to view]



[quoted text, click to view]

if name and surname are the instance names of input textfields, use

name = name.text;
surname = surname.text;

regards
Jack

AddThis Social Bookmark Button