in reply to Tk perfection
statement. Keep a few things in mind:$Home = $ENV{'HOME'};
your code (probably) won't get executed untill after the Tk module unless you surround it in a BEGIN block, like this:$Tk::Home = $ENV{'HOME'};
The best thing to do is probably to do as already suggested, get the newest version of Tk, and fix and submit the patch if necessary.BEGIN { $Tk::Home = $ENV{'HOME'}; }
|
|---|