If you are using Firefox as your browser the message "Transfering data
from..." will be there all the time even if all data has been returned
(This is a firefox bug). If you click on another tab and then return
to this tab the messgae will be removed.

Now, if you still have the busy cursor, you probably have not received
any data back from your server. Does the result event fire?

Are there any error messages being created on your server so the
server never returns any data?

You may like to use a HTTP proxy like Charles
(http://www.charlesproxy.com/) to check what you are sending
to/receiving from your server.



--- In flexcoders@yahoogroups.com, "mr_delphi_developer"
<[EMAIL PROTECTED]> wrote:
>
> I used the "Build Application from Database" and have everything 
> going great. However, I added the capability to send two parameters 
> to do some security checking in the initial HTTPService send.
> 
> Now, when either of those two params fail the check, I am returning 
> an error in the $toret array:
> 
> $toret = array(
>   "data" => array("error" => "Team ID or PIN is incorrect."),
>   "metadata" => array()
> );
> 
> Now, when this is processed in the resultHandler in the UI, I am
> wanting to setFocus back to the entry control:
> 
> public function resultHandler(e:ResultEvent):void
> {
>   // deserialize sets the isError to true
>   // if (obj.data.elements("error").length() > 0)
>   var topass:* = deserialize(e.result, e);
>   if (topass.isError) {
>     teamID.setFocus();
>   } else {
>     e.token.handler.call(null, topass);
>   }
> }
> 
> But, I still get a wait cursor and "Transfering data from..." in the
> status bar.
> 
> How do I prevent those from happening?
>


Reply via email to