There has been some recent discussion of the tile option in comp.lang.perl.tk. Basically, it is not reliable in Perl/Tk based on Tk 8.4 , it dosn't work for me here either. Tile is supposed to be in Tk8.5 and hopefully the next Perl/Tk release ( if there is one :-( ).

In the meantime, you can hack around it

#!/usr/bin/perl ######################################## ### How to fake a background tile ### ### using the place geometry manager ### ######################################## use warnings; use Tk; use strict; my $mw=tkinit; $mw->geometry('500x430'); #my $file = './zen16.gif'; my $file=Tk->findINC('demos/images/earthris.gif'); my $image = $mw->Photo(-file=>$file); my $w = $image->width; my $h = $image->height; for (my $i=0; $i<$mw->screenwidth; $i+=$w) { for (my $j=0; $j<$mw->screenheight; $j+=$h){ $mw->Label(-image=>$image)->place(-x=>$i, -y=>$j); } } $mw->Button(-text=>"Pack your")->pack; $mw->Button(-text=>"widgets")->pack; $mw->Button(-text=>"like normal !")->pack; MainLoop;

I'm not really a human, but I play one on earth Remember How Lucky You Are

In reply to Re: Frame -tile option by zentara
in thread Frame -tile option by Anonymous Monk

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.