in reply to Tk Tool

I ususally muck around with Tcl/Tk's wish before translating it into Perl/Tk and ploping in code. I'm wondering if folks would write up a Perl version of wish... hmmm, phish, perhapse?

--
$Stalag99{"URL"}="http://stalag99.keenspace.com";

Replies are listed 'Best First'.
Re: Re: Tk Tool
by kevin_i_orourke (Friar) on Jun 21, 2001 at 12:34 UTC

    ptksh is shipped with ActiveState's version of the Tk module, I assumed it was standard.

    It gives you a command window and a Tk MainWindow so you can do things like:

    $b = $mw->Button(-text => "Hello")->pack;

    and a button appears.

    --
    Kevin O'Rourke
    
      ptksh is a standard part of Tk.

      In your preferred shell, type

      perldoc ptksh
      for more info.