in reply to Perl-Tk copy/paste to X terminal
#! /usr/bin/perl use warnings; use strict; use Tk; use Tk::ROText; my $mw = 'MainWindow'->new; my $t = $mw->ROText->pack; $t->Contents('Just another Tk hacker,'); MainLoop();
Can you show the code that doesn't work?
|
|---|