![]() |
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
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;
Many other examples can be found in the source tree in directories
ppr/demo and xml/demo. Furthermore, you may
try the tutorials, or read the other manual-pages ;)
|
|
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. |