On 19.02.2009, at 22:18, Justinas wrote: > How to make window blink in taskbar and title? (for event > notification)
FLTK has no interface to blink the title bar (it is not a cross platform thing, so there is no interface for it). As an alternatie, you could blink the window contents itself: win->color(FL_BLACK); win->redraw(); fl_wait(0.2); win->color(FL_WHITE); win->redraw(); fl_wait(0.2); ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

