FM has asked for the wisdom of the Perl Monks concerning the following question:
Dear Monks,
I have a menu bar:and a sub:my $menu=$mw->Menubutton ( -text=>'Information', -background=>'lightblue', -foreground=>'blue', -activebackground=>'cyan', -activeforeground=>'blue', -menuitems=>[ [ 'command' => "About this program", "-command" => \&about, "-underline" => 0], [ 'command' => "User Guide", "-command" => \&help, "-underline" => 0 ] ])->pack(-anchor => 'ne');
I would like that when my user clicks on "User Guide" s/he can read that file in its original format (pdf) and keep it open while s/he is interacting with the application.sub help { #open (file.pdf); }#help
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl Tk: opening a file in its original format
by Corion (Patriarch) on Oct 17, 2005 at 06:31 UTC | |
by Fletch (Bishop) on Oct 17, 2005 at 14:25 UTC | |
by FM (Acolyte) on Oct 18, 2005 at 03:16 UTC | |
by Corion (Patriarch) on Oct 18, 2005 at 06:35 UTC | |
|
Re: Perl Tk: opening a file in its original format
by rcseege (Pilgrim) on Oct 17, 2005 at 06:35 UTC |