Thread Tk::Zinc, größe von rectangles ändern (4 answers)
Opened by #Kein Kommentar at 2009-02-09 16:50

Spieler
 2009-02-09 21:38
#118761 #118761
User since
2007-09-24
70 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Tk;

my $mw = MainWindow->new ;

my $z = $mw->Zinc()->pack;
my $r = $z->add('rectangle', 1, [10,20,40,50]);
$mw->Button(-text => 'new Coords',
-command => sub{$z->coords($r,1,[100,100,200,200])}
)->pack;

MainLoop;
So geht es bei mir,
Siehe auch t/Coords.t ;)
Christoph

View full thread Tk::Zinc, größe von rectangles ändern