> I need some introductory book or online documentation with the description
> of methods and properties associated with the different objects (Buttons,
> Check boxes etc) with good examples, defined in the Tk package.

O'Reily has two books - Perl/Tk and Perl/Tk pocket reference.  Once you have the
general gist of things from the former (larger and longer) book  strongly 
suggest
that you switch to the pocket reference.  The large Tk book is a nightmare to 
learn
from as the examples are unnecessarily complex.


> Further I need a quick guidance on how to shut down or kill the window once
> I bring it up using the Show() method.

$window->withdraw;
or
$window->iconify;



Reply via email to