Hi,
I am using the following code to post data from the following fields (HName, HRoad, HArea, HTown) to an ASP page, this code works fine with the text fields shown:
loadVariablesNum("propertyaddflash.asp", 0, "POST"
;
However I need to add a number of combo boxes onto the same FLA\SWF file, for some reason it does post data from the combo boxes to the ASP, only the text fields data gets transferred.
I found some information relating to the code shown below, which I have tried with a combo box which in the instance box I have called HStyle
function onSubmit()
{
formData.HStyle="";
formData.HStyle=HStyle.getValue();
}
But I still cant get it to work, How do I use this kind of code with the "loadvariables" as shown above???
Many Thanks
Darrell...
I am using the following code to post data from the following fields (HName, HRoad, HArea, HTown) to an ASP page, this code works fine with the text fields shown:
loadVariablesNum("propertyaddflash.asp", 0, "POST"
However I need to add a number of combo boxes onto the same FLA\SWF file, for some reason it does post data from the combo boxes to the ASP, only the text fields data gets transferred.
I found some information relating to the code shown below, which I have tried with a combo box which in the instance box I have called HStyle
function onSubmit()
{
formData.HStyle="";
formData.HStyle=HStyle.getValue();
}
But I still cant get it to work, How do I use this kind of code with the "loadvariables" as shown above???
Many Thanks
Darrell...