Accessing Idea progressMonitor Follow mark stephens Created March 17, 2008 09:38 Is there an example showing how to access the IDEA popup/progressMonitor so I can access from my plugin?
Try using ProgressManager.getInstance(). You can start your own Runnables in background or modal.
ProgressManager.getInstance().getProgressIndicator() gives you the ProgressIndicator which you can update during your iterative operation.
Regards,
Dan
Thanks. I found a worked example at http://www.jroller.com/ulc/category/idea?page=1