Difference event.result and event.message.body in Flex

Posted by theband on Stack Overflow See other posts from Stack Overflow or by theband
Published on 2010-05-03T12:15:27Z Indexed on 2010/05/03 12:18 UTC
Read the original article Hit count: 225

Filed under:

What is the difference between event.result and event.message.body in Flex.

 private function resultHandler(evt:ResultEvent):void
   {
                result_text.text = evt.message.body.toString(); 
    }


 private function resultHandler(evt:ResultEvent):void
   {
                result_text.text = evt.result.toString(); 
    }

© Stack Overflow or respective owner

Related posts about flex