bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: help needed


From: Thomas Dickey
Subject: Re: help needed
Date: Mon, 23 Dec 2002 15:29:56 -0500
User-agent: Mutt/1.3.27i

On Mon, Dec 23, 2002 at 12:35:11PM +0000, Roberto De Leo wrote:
> Hi,
> I am the mantainer of the MoviX project (movix.sf.net).
> 
> I am developing for my project an mplayer console interface using the 
> Perl/Curses interface and I really liked the Curses library [it is my 
> first time I use it] but I found an annoying problem I don't know how to 
> solve. I guess you are not the right guys to ask about Perl - Curses 
> questions but I think the solution of my problem has to do only with the 
> ncurses library, not with Perl
> 
> The fact is that I need sometimes to do a
>    system "clear";
> command to make the screen black during the playback of a movie, and did 
> not manage to find any curses function to redraw the whole menu after a 
> "clear".
perhaps

        endwin();
        system("clear");

        /* run your movie */

        refresh();

-- 
Thomas E. Dickey <address@hidden>
http://invisible-island.net
ftp://invisible-island.net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]