Example

PPresenter
Manual
Example

Portable Presenter is a package designed to give presentations. It is written in Perl/Tk only, which is available for UNIX and for Windows.

A brief implementational example often tells more than millions of words, so here it is (file demo/simple);

    use PPresenter;
    use strict;
    
    my $show = new PPresenter
    ( -name     => 'A very simple show'
    );
    
    $show->addSlide
    ( -title    => 'first slide'
    , -main     => <<MAIN
        <CENTER>
           <BIG COLOR=red>My Show</BIG>
        </CENTER>
    
        Hi, welcome to PPresenter.  This package
        helps you creating presentations using
        Perl and Tk.
    MAIN
    );
    
    $show->run;
 
Portable Presenter is written and maintained by Mark Overmeer. There is no relation between this software product and his employer.
Copyright (C) 2000, Free Software Foundation FSF.