in reply to Perl::Tk app to manipulate pasted text on the fly
Also I found using Tk in a withdrawn state, gave good results
#!/usr/bin/perl use warnings; use strict; use Tk; use Tk::Clipboard; my $mw = tkinit; $mw->withdraw; #use Tk without showing a window my $content = 'foobar'.time; print "$content\n"; $mw->clipboardClear; $mw->clipboardAppend($content); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl::Tk app to manipulate pasted text on the fly
by arbingersys (Pilgrim) on Feb 02, 2008 at 16:52 UTC |