in reply to How to blink a text using Term::ANSIColor
It'll blink until you enter "reset" on your keyboard. If you don't type in reset, then the blink will keep going.#! perl use strict; use warnings; use Term::ANSIColor qw(:constants); print BRIGHT_GREEN(), ON_BLACK(BLINK(), "Better?"), "\n"; print RESET;
|
|---|
| 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 | |
by ungalnanban (Pilgrim) on Feb 07, 2011 at 09:45 UTC |