I am now sometimes using the Busy plugin, just to show a busy cursor.
Which b.t.w. is a nice plugin !
But if I only want to show a busy cursor somewhere (no blocking or other features), I have to change my existing code to call it.
And even more changes are needed when a function returns a value.
Would'nt it be nice to be able to set the cursor "Busy" and "not Busy" without realy change the code ?
For Instance :
- Code: Select all
function functionName(Param) {
try {
setCursorBusy()
< existing >
< code >
< return value >
} finally {
setCursorNotBusy()
}