Leser: 1
5 Einträge, 1 Seite |
$zinc->coords($box,$x_1,$y_1,$x_2,$y_2);
#Kein Kommentar+2009-02-09 19:02:05--habe ich auch schon probiert. bei mir kommt dann: malformed coord list at C:/Perl/lib/Tk.pm line 252..
probiert habe ich es mit:
Code: (dl )$zinc->coords($box,$x_1,$y_1,$x_2,$y_2);
$zinc->coords($box, [$x_1, $y_1, $x_2, $y_2]);
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;
5 Einträge, 1 Seite |