static void blinkWindow(Window w) { awtEvery(w, 1000, new Runnable { bool on; public void run() { w.setVisible(on = !on); } }); }