Leser: 1
|< 1 2 >| | 15 Einträge, 2 Seiten |
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/perl use strict; use warnings; use Tk; my $mw = tkinit(); $mw->iconify(); MainLoop;
Gast+2007-11-23 11:58:57--
- solange ($mw->state =~ /iconic/) wechsele jede Sekunde die Images:
$mw->iconimage($img1); sleep 1; $mw->iconimage($img2);
Hat aber leider nichts gebracht, d.h. die Images haben sich nicht abgewechselt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!usr/perl/bin
use strict;
use warnings;
use Tk;
use Tk::Photo;
my $mw = MainWindow-> new ();
my $icon = "icon1.bmp";
$mw-> iconimage($mw-> Photo (-file => $icon));
$mw-> repeat (1000, sub {if ($icon eq "icon2.bmp"){$icon = "icon1.bmp";}else{$icon = "icon2.bmp";} $mw-> Icon (-image => $mw-> Photo (-file => $icon));});
$mw-> iconify;
MainLoop ();
|< 1 2 >| | 15 Einträge, 2 Seiten |