in reply to full screen UI in perl
use strict; use Term::ANSIScreen qw(:cursor :screen); $| = 1; cls; locate(10, 10); print "Hello"; sleep(1); locate(10,10); clline(); print "Bye"; sleep(1);
Update: Turned off buffering (which was causing some problems) and added example for clline.
stephen
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: full screen UI in perl
by chip (Curate) on Jun 12, 2001 at 04:43 UTC |