The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Partty::Screen - Term::Screen for Net::Partty

SYNOPSIS

  use Net::Partty::Screen;

   my $scr = net::Partty::Screen->new;
   $scr->connect(
       message           => 'message',
       session_name      => 'session_name',
       writable_password => 'writable_password',
       readonly_password => '',
   );
   $scr->clrscr();
   $scr->at(5,3);
   $scr->puts("this is some stuff");
   $scr->at(10,10)->bold()->puts("hi!")->normal();
      # you can concatenate many calls (not getch)
   $c = $scr->getch();      # doesn't need Enter key 
   ...
   if ($scr->key_pressed()) { print "ha you hit a key!"; }

DESCRIPTION

Net::Partty::Screen is Term::Screen interface for Partty.org

AUTHOR

Kazuhiro Osawa <ko@yappo.ne.jp>

SEE ALSO

Term::Screen, Net::Partty, http://www.partty.org/

REPOSITORY

  svn co http://svn.coderepos.org/share/lang/perl/Net-Partty-Screen/trunk Net-Partty-Screen

Net::Partty::Screen is Subversion repository is hosted at http://coderepos.org/share/. patches and collaborators are welcome.

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.