That's a great idea! I was thinking I could perhaps "destroy" the label and recreate it every time but that seemed a bit much to have to do. Since that label is the same size, overwriting it should be okay.
Update:
Worked like a charm!
Surprisingly enough, it doesn't seem to complain that you've got two labels in the same place, and will actually update depending on which one you choose.
use strict;
use Win32::GUI;
use constant COLOR => '#F4F2E8';
my ($redraw, $count);
$count = 0;
my $main = Win32::GUI::Window->new(
-name => 'Main',
-text => 'Redraw Test',
-width => 200,
-height => 100,
-background => COLOR,
-onTimer => \&redraw,
);
my $arrow_font = Win32::GUI::Font->new(
-name => "Wingdings",
-size => 28,
-bold => 1,
);
$main->AddTimer( "redraw", 500 );
my $uparrow = $main->AddLabel(
-text => ' ',
-left => 55,
-font => $arrow_font,
-foreground => [255,0,0],
-background => COLOR,
-top => 10,
);
my $dnarrow = $main->AddLabel(
-text => ' ',
-left => 55,
-font => $arrow_font,
-foreground => [0,255,0],
-background => COLOR,
-top => 10,
);
$main->Show();
Win32::GUI::Dialog();
sub Main_Terminate {
-1;
}
sub redraw{
$count++;
if ($count%2){
$dnarrow->Text(chr(233));
}
else
{$uparrow->Text(chr(234));}
}
The only thing that I found didn't work is to put '' in the text for the initial label. Once I changed that to ' ' all worked just fine.
Thanks again for the idea!
Revolution. Today, 3 O'Clock. Meet behind the monkey bars.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.