While using perl-tk on hp-ux i used the -tile options with a Frame. I am now using Red Hat Linux 5.1 and when i run the tk gui i get "unknown option "-tile" ". Any ideas why this does not work on Red Hat? Here is the code:
$image = $mw->Bitmap(-file => "bw.bm");
my $frame = $mw->Frame(-relief => "flat", -tile => $image,
)->pack(-fill => "both", -side => "left", -expand => "1",
-anchor => "w", -pady => "2");
$image = $mw->Bitmap(-file => "bw.bm");
my $frame = $mw->Frame(-relief => "flat", -tile => $image,
)->pack(-fill => "both", -side => "left", -expand => "1",
-anchor => "w", -pady => "2");