Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks,
do we have any tools,to do fast GUI screen using TK.

Replies are listed 'Best First'.
Re: Need a Tool for TCL TK
by Anonymous Monk on Jun 17, 2009 at 06:59 UTC
Re: Need a Tool for TCL TK
by Khen1950fx (Canon) on Jun 17, 2009 at 19:38 UTC
    If you just want a window to start on, you can try this:

    #!/usr/bin/perl use strict; use warnings; use Tk; my $mv = MainWindow->new(); my $c = $mv->Canvas(-width => 600, -height => 600); $c->pack; MainLoop;