Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
6k views

Getting the browser cursor from “wait” to “auto” without the user moving the mouse

I use this jQuery code to set the mouse pointer to its busy state (hourglass) during an Ajax call... $('body').css('cursor', 'wait'); and this corresponding code to set it back to normal... ...
8
votes
12answers
2k views

Busy cursors - why?

Can anyone give me a scenario where they think busy cursors are justified? I feel like they're always a bad idea from a user's perspective. Clarification: by busy cursors, I mean when the user can ...
7
votes
3answers
2k views

Mac OS X: what causes the spinning beach ball?

When does OS X decide to give your app a spinning beach ball? What can you do when programming an application to avoid this?
4
votes
4answers
1k views

java wait cursor display problem

I am having issues displaying a wait cursor in my application. Whenever the mouse is above a panel that defines its own cursor, the wait cursor does not appear. If a panel does not change the cursor, ...
4
votes
3answers
7k views

How to do 'busy' animation in Android?

Doesn't seem to be covered in the books Ive looked at.
1
vote
1answer
118 views

Avoid hourglass after calling CreateProcess

In my Win32 app I embed ffplay.exe for video preview. It works great but each time I start a preview the cursor becomes "busy", i.e. arrow+hourglass. I want to avoid that.
1
vote
3answers
1k views

Make mouse with busy icon (C#)

I have an application that takes a couple of seconds to run. Is it possible to make the mouse with the busy icon while the app is processing?
1
vote
1answer
271 views

Page not updating during busy javascript code

I have a pretty long javascript script. The problem is that in the middle of it I want to change a div's innerHtml to say "almost done please wait". I think the issue is that I call a jquery function. ...
0
votes
1answer
117 views

flex tree busy cursor

i am using a tree with an array collection, i have tried to run busy cursor on expandItem but now i dont know were to stop it when the tree finishes loading children,
0
votes
2answers
368 views

JSP + Busy Status on page load until all is loaded

I'm using JSP & Struts2 for development. When I login, I call an action, which inturn takes some time to load the data on the page. While the data is getting loaded, I want to show a busy cursor ...
0
votes
3answers
606 views

Android - what busy marker for individual rows in ListView

I have android application with ListView, where each row has own "refresh" button. Refreshing content is based on asynchronous http call, so until it completes (or timeout) I'd like to display some ...
0
votes
1answer
177 views

XULRunner Busy/Loading indicator

I have an XULRunner based application in which I need to (a) ask for user input using a custom dialog, and when the user clicks "OK", (b) perform the requested operation. This operation is an ...