Questions tagged [busy-cursor]

26 questions
75
votes
14 answers

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... $('body').css('cursor', 'auto'); This works fine... on…
Nosredna
  • 83,000
  • 15
  • 95
  • 122
16
votes
4 answers

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, the wait cursor appears. I am attaching a SSCE to…
Santosh Tiwari
  • 1,167
  • 2
  • 14
  • 26
11
votes
3 answers

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?
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465
9
votes
12 answers

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 no longer interact with the application, they can…
Jesse Pepper
  • 3,225
  • 28
  • 48
9
votes
2 answers

How to do 'busy' animation in Android?

Doesn't seem to be covered in the books Ive looked at.
Eno
  • 10,730
  • 18
  • 53
  • 86
8
votes
4 answers

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?
mouthpiec
  • 3,923
  • 18
  • 54
  • 73
5
votes
2 answers

Wait cursor and disable java application

I want to have the user press a button to kick off a background thread. While the thread is processing, I want two things to happen: 1) A WAIT_CURSOR should be displayed. 2) The application should not respond to mouse events. As per the setCursor…
bigleftie
  • 453
  • 1
  • 6
  • 17
4
votes
0 answers

C++ Win API window mouse busy on x64 platform

I created in C++ a window with the Win API. If I set the target platform to x86 in Visual Studio (2015) all works fine. But if I set the target platform to x64 all works fine too except that I get a busy cursor for the first 4-5 seconds when the…
Michael
  • 595
  • 5
  • 19
3
votes
1 answer

How do I check if Windows is currently displaying the busy cursor?

I know how to set the current cursor, but how do I check on the operating-system level if Windows is displaying the Busy cursor? Otherwise, how do I check if Windows is in the "busy" state?
deavon
  • 53
  • 6
2
votes
2 answers

busy mouse cursor when page loading in ASP.NET

I just want to inform the user that the page is busy when it is loading or the action is being carried in the background or when the postback occurs by just changing the mouse cursor to busy. The cursor should turn to normal pointer when the page…
Aneesh
  • 187
  • 1
  • 3
  • 18
2
votes
1 answer

Setting waitcursor on glasspane doesn't work in Dialog

I have an app that sometimes kicks off a long-running process in a background thread. If it does this from the main app, I set the wait cursor like this: oldCursor =…
CasaDelGato
  • 603
  • 7
  • 17
1
vote
1 answer

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.
sashoalm
  • 75,001
  • 122
  • 434
  • 781
1
vote
2 answers
1
vote
1 answer

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. The in the success callback of the function I…
Erica H Matthews
0
votes
1 answer

Browser sometimes ignoring CSS changes (cursor style)

(This is an edited question, based on Adam H's help.) I have a complex web-app in Javascript. Some actions are lengthy, and I want to show the busy cursor during these actions. These actions take on many forms, in many places in the code. They…
EelcoV
  • 1
  • 3
1
2