I have a HTTPService:
<mx:HTTPService id="scoreService" url="http://" method="POST" result="onResult(event)">
<s:request xmlns="">
<name>{..}</name>
<score>{...}</score>
</s:request>
</mx:HTTPService>
And a script for (event):
private function onResult(e:ResultEvent):void
{
if (e.result.status == true)
{
currentState='...';
}
else
{
Alert.show("...", "...");
}
}
The problem is that none of the event possibilities fires after I POST data to my php...
Thanks, Yan