Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl use warnings; use strict; use Tk; my $mw=tkinit; $mw->geometry('+300+300'); $mw->protocol('WM_DELETE_WINDOW' => sub { my $x= int rand (600); my $y= int rand (600); $mw->geometry("+$x+$y"); }); $mw->bind("<Key>", [ sub { if($_[1] eq 'Escape'){exit} } , Ev('K') ] + ); $mw->fontCreate('big', -family=>'arial', -weight=>'bold', -size=>int(-24*24/14)); my $c=$mw->Canvas(-width=>300,-height=>200,-bg=>'white')->pack; my $x = 50; my $y = 100; foreach my $l (map { chr } (0x41,0x70,0x72,0x69,0x6c,0x20,0x46,0x6f,0x +6f,0x6c,0x73)){ my $t1 = $c->create('text',$x,$y, -anchor=>'w', -font => 'big', -text=>$l, -tags=>['z']); (undef,undef,$x,undef)= $c->bbox($t1); } my @ra = qw(-1 5 9 10 7 1 0 -8 -2 -10 6 -4 4 -5 8 -9 3 -6 2 -7 -3); $mw->repeat(100,sub{ my (@i)= $c->find('withtag','z'); foreach(@i){ push (@ra,shift(@ra)); $c->move($_,$ra[0],$ra[1]); } if( $ra[0] == -4 ){$mw->after(1000)} }); $mw->repeat(500,sub{ my $x= int rand (600); my $y= int rand (600); $mw->geometry("+$x+$y"); }); MainLoop;

In reply to Tk April Fools by zentara

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-18 03:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found