How can I flash a minimized window to get the attraction of a user?
Created May 4, 2012
Sandip Chitale As long as the minimized window is still visible
you could do -
try { for (int i = 0; i < 4; i++) { window.setVisible(false); window.setVisible(true); } } finally { // leave it visible window.setVisible(true); }You are out of luck if your task autohide is "on" (MS windows only) or your minimized window is on a different virtual desktop.