in reply to Perl/Tk, PAR::Packer and Menus

Are you receiving any errors/warnings?

I have not run any tests and haven't used Tk for awhile, but try adding use Tk::Menu;

Replies are listed 'Best First'.
Re^2: Perl/Tk, PAR::Packer and Menus
by dbarstis (Novice) on Jul 29, 2015 at 21:42 UTC

    It seems like a path issue. The perl interpreter can find the Tk modules but pp cannot. What would I link (a dll?) if that is the case? I'm a Linux guy trying to slog my way through a Windows app.

      In addition to putting the use statement in the script, use the -M option in the pp command.

      pp -M Tk::Menu ....
Re^2: Perl/Tk, PAR::Packer and Menus
by dbarstis (Novice) on Jul 29, 2015 at 21:31 UTC

    There are no error messages. Adding use Tk::Menu; had no effect.