I am having problems with Perl/Tk windows. Certain ones have the feature that if you obscure them with another window - wholly or partially - then reveal them again, the window contents are missing - wholly or partially again. I have found this with both mySplashScreen and Message windows. How can I avoid this happening, or is this a "feature" of these objects? Sample code I have been using:
use Tk;
require Tk::mySplashScreen;
use strict;
use warnings;
my $s = mySplashScreen -> new
(
-image => '',
-text => 'testing, one, two, three...'
);
for my $n (1 .. 10)
{
print "$n\n";
sleep 1;
}
$s -> destroy;
And:
use Tk;
use strict;
use warnings;
my $mw = MainWindow -> new;
my $m = $mw -> Message (-text => "testing, one, two, three...") -> pac
+k;
$m -> update;
for my $n (1 .. 10)
{
print "$n\n";
sleep 1;
}
$m -> destroy;
print "Done\n";
If this feature is unavoidable for these objects, is there an alternative type I can use? All I am trying to do is display a message window that remains on the screen while a called application (a scanner program) runs. I cannot believe how difficult it is to achieve something so basic. I have tried Google and turned up nothing for this.
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.