your code effectively translates to following Tcl/Tk code:
this one loops:
grid [button .b1] [button .b2]
pack [button .b3]
this one shows 2 buttons in a grid:
grid [button .b1] [button .b2]
#pack [button .b3]
Run it with 'wish' command (provided you have Tcl/Tk installed)
This is known limitation, and maybe it has some explanation
I can only say that sometimes you can mix different geometry methods within one parent, sometimes you don't, but generally you shouldn't
you could discuss this with tcl/tk people, so they will give you more details on the matter if you really interesting
Remember that you still can use different geometries within different parents - i.e. create a Frame, 'grid' it, and then do 'pack' inside it at your will
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.