#!/usr/bin/perl use Tk; $top = new MainWindow; $top->eventAdd(qw[<> ]); $top->eventAdd(qw[<> ]); $top->Text->pack; MainLoop; __END__