in reply to How to blink a text using Term::ANSIColor

This blinks:
#! perl use strict; use warnings; use Term::ANSIColor qw(:constants); print BRIGHT_GREEN(), ON_BLACK(BLINK(), "Better?"), "\n"; print RESET;
It'll blink until you enter "reset" on your keyboard. If you don't type in reset, then the blink will keep going.

Replies are listed 'Best First'.
Re^2: How to blink a text using Term::ANSIColor
by aantonyselvam (Beadle) on Feb 07, 2011 at 09:28 UTC
    In linux gnome-terminal the blink will not work. kindly check with the konsole. It will work.