I am using the mx:HTTPService from Flex and it has a showBusyCursor
property that I set to true:

<mx:HTTPService id="httpService" 
                showBusyCursor="true"    
                result="handleResult(event)"                    
                fault="handleFault(event)"
                method="GET"
                url="http://someurl/";
/>

When the HttpService is issued a send request, the busy cursor is
shown as an animated clock. I would like to use a custom gif. Is there
any easy way to do this?

Thanks

Reply via email to