--- In [email protected], "m.frigge" <[EMAIL PROTECTED]> wrote:
>
> Hey,
>
> i had the same issue. The busy
> courser is available, if you use
>
> import mx.rpc.http.mxml.HTTPService
>
> instead of
>
> import mx.rpc.http.HTTPService
>
> For some reason there are two versions
> of httpRequest.. the mxml one does
> suprt the busyCourser property.
>
> hth, Max
>
> --- In [email protected], "markgoldin_2000"
> <markgoldin_2000@> wrote:
> >
> > Is this property available for HTTPService that is set in
ActionScript?
> > service = new HTTPService();
> > service.showBusyCursor = true; does not work for me.
> >
> > Thanks
> >
>
You can also do this:
import mx.managers.CursorManager;
then turn on and off the cursor like this:
CursorManager.setBusyCursor(); //turn on when you start call
CursorManager.removeBusyCursor(); //turn off when you complete
Just giving you options.