in reply to perl/tk show script progress

What you ask for is possible, but is very complex, and much depends on the nature of the Perl script you are running. How can you tell what the progress is on your script? Does the script print out the percent done? There are Notebook tabbed widgets, progressbar widgets, and IPC modules that you can use, and you can google for many examples previously posted. But first you need to learn something about running Tk, see perltk tutorial and another tutorial . You can also read the good book, the bible of Tk, Mastering Perl/Tk.

It all seems overwhelming at first, but it all starts with writing a "Hello World" program.


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^2: perl/tk show script progress
by swoop (Acolyte) on Sep 08, 2011 at 19:02 UTC
    I do not really want a progress bar displaying the progress of my script. I want my second script to run within the GUI window showing the scripts progress, meaning the printing of data and so forth the second script executes.