Anyone know why this isn't working? When run, nothing is posted..all
form fields exist and are valid...thanks in advance...
<mx:HTTPService id="userRequest"
url="data/forms/contact.txt" useProxy="false"
method="POST">
<mx:request xmlns="">
<username>{nameInput.text}</username>
<address1>{address1.text}</address1>
<address2>{address2.text}</address2>
<city>{city.text}</city>
<state>{state.text}</state>
<zip>{zip.text}</zip>
<country>{country.text}</country>
<emailaddress>{emailInput.text}</emailaddress>
</mx:request>
</mx:HTTPService>