plugin or other way to change cursor style

Hi,

I wonder if there is a plugin or another way to change the style of the cursor/mouse pointer.
I want to use this to show the user that the solution is busy.
For long running actions I already use the headless client and/or progress plugin.

But for actions that may take only one or a few seconds I want to change the cursor style and set it back when the action is ready.

I think I have seen it somewhere and today I discussed this with Marcel Trapman, he also thought there is something available somewhere.
But maybe I mix it up with Oracle Forms where I used to do it that way.

Regards,

HI Hans,

I use the busy plugin for this, there is a option to just show the cursor.

Thanks,

That works and the cursor is animated (I gues it runs in another thread )

Regards,

But I still think it would be nice if Servoy offers this as standard funtionality, would’nt it ??

It should be doable, todo it right in Servoy with Java, look here: http://www.catalysoft.com/articles/busyCursor.html

try {
  component.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
  doProcessing();
} finally {
  component.setCursor(Cursor.getDefaultCursor());
}

But I’m not sure how I set the Java syntax in Servoy!