hi,
not sure if it suppose to be this way,
for example, a button to invoke remote object call,
protected function
btn_clickHandler(event:MouseEvent):void
{
trace("btn_clickHandler");
var token : AsyncToken =
ro.token_cal_badl(null);
token.addResponder(new
mx.rpc.Responder(onResult_1, onFault_1));
}
protected function onResult_1(event:ResultEvent) : void
{
trace("onResult_1");
trace(event);
}
protected function onFault_1(event:FaultEvent):void
{
trace("onFault_1");
trace(event);
}
however the issue is that result or fault fired one time only?
First time, I click, it fires the fault... then I click again.. nothing
happen?
Thanks.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/responder-bug-or-not-please-help-tp45472.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.