does not show a busy cursor in my solution (Servoy 6.0.7, win 7, java 1.6.0_33).
If I use the plugins.busy.block(parameters) and plugins.busy.unblock() function the cursor get busy (circle).
Just tried on Win 7, Java 1.6.0_33 (32 and 64-bit), Servoy 6.0.7 in Developer AND real Smart Client and this worked fine for me with this code:
plugins.busy.showWaitCursor();
try {
for (var i = 0; i < 10; i++) {
application.sleep(500);
application.output(i+1);
}
} finally {
plugins.busy.showDefaultCursor()
}
So I’m wondering what’s the context of your call. Are you calling it from a method that already blocked the UI? Is it in a dialog?
And what do your “// some code” do in your case?