in reply to Re^3: Tk April Fools
in thread Tk April Fools
#!/usr/bin/perl use strict; use Tk; my $mw = new MainWindow(); $mw->geometry("100x100+100+100"); my $label1 = $mw->Label(-text => "Catch Me Fool", -bg => 'cyan')-> pack(-fill => 'both', -expand => 1,); #put stuff here $mw->bind("<Enter>",sub { my $x = int rand 600; my $y = int rand 600; $mw->geometry("+$x+$y"); }); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Tk April Fools
by GrandFather (Saint) on Apr 02, 2008 at 19:51 UTC |