in reply to Starting another Tk GUI MainLoop

If you want them to behave like seperate programs why not just run the second script as a second program?

Probably using backticks is the easiest way to do that:

... #run the second script `Perl secondscript.pl`; #resumes here when second script terminates

Perl is Huffman encoded by design.

Replies are listed 'Best First'.
Re^2: Starting another Tk GUI MainLoop
by Ace128 (Hermit) on Jul 18, 2005 at 13:17 UTC
    Is this gonna work with PAR (PP) aswell? (Meaning having all those merged into a STANDALONE file...)

      In this case it likely will as you can be pretty sure the system will be able to find Perl, regardless of what system it is, and backticks work pretty much anywhere.


      Perl is Huffman encoded by design.