Hi PerlMonks,
the following code snippet demonstates my problem:
#!/usr/bin/perl
use strict;
use warnings;
use Tk;
use Tk::waitVariableX;
my $mw = MainWindow->new();
my $unchanged_var = ' ';
while ()
{
my $numtime = time ();
my ($curr_sec, $curr_min, $curr_hour, $curr_mday, $curr_month, $cu
+rr_year, $curr_wday, $curr_yday, $curr_isdst) = localtime ($numtime);
+
my $lab1 = $mw->Label (-text => 'time returned: ' . $curr_hour . '
+:' . $curr_min . ':' . $curr_sec)
->form(-left => '%5', -top => '%10');
$lab1->update;
$mw->waitVariableX (5 * 1000, \$unchanged_var); # sleep 5 secon
+ds
}
MainLoop;
The package (Tk::waitVariableX from cpan) installs ok but it seems like something is not set during the install process.
My environment: Windows 7, ActivePerl 5.16.3.1603 MSWin32, Tk: 804.030, Tk::waitVariableX: 1.0
The same behavior under Linux.
Could you please let me know what I am doing wrong.
Thanks for your help - jowe
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.