Hi Popcorn Dave,

From reading through this thread I thought it was important to make a distinction. Since Tk is event driven you need to specify an event during which your variable is read. One way of doing this is using a polling function. This example displays the contents of $var every second:

#! /usr/local/bin/perl -w use strict; use Tk; my $var = ''; my $w = new MainWindow; $w->Entry( -textvariable => \$var )->pack; $w->repeat(1000, [ \&print_var, \$var ] ); MainLoop; sub print_var { my $var = shift; print scalar(localtime)," >$$var\n"; }
This is somewhat inelegant because it is called no matter whether your variable has changed or not.

Another thing you may want to play with (I've not had much luck with it) is to use the validate option on your entry widget.

#! /usr/local/bin/perl -w use strict; use Tk; my $var2 = ''; my $w = new MainWindow; $w->Entry( -validate => 'all', -validatecommand => [ \&print_var, \$va +r2 ], -textvariable => \$var2 )->pack; MainLoop; sub print_var { my $var = shift; print scalar(localtime)," >$$var\n"; }
This basically says that with any action that affects the entry widget perform the validation callback.

Update: I almost forgot to mention - it may be imperitive that you pass a reference to your callback subroutine, particularly with after or repeat. Otherwise they will print out your initial value forever.

Good luck, I hope this helps.
{NULE}
--
http://www.nule.org


In reply to Re: Question on Tk Entry by {NULE}
in thread Question on Tk Entry by Popcorn Dave

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.