What's a good way to display progress or a busy cursor for a potentially long-running, but synchronous operation (in my case generating a PDF using AlivePDF) ?
As noted here, CursorManager.setBusyCursor doesn't display the cursor until there is no code running, and PopupManager seems to act similarly. Defer initiation of the operation using a timer?

