Thread Checkbuttons und pack()...: Anordnung von Checkbuttons (13 answers)
Opened by TheDHK at 2007-01-25 18:50

TheDHK
 2007-01-25 18:50
#46156 #46156
User since
2007-01-19
37 Artikel
BenutzerIn
[default_avatar]
Hi,
ich habe ein Skript mit mehreren Checkbuttons. Das sieht so aus: http://img401.imageshack.us/img401/3923/suchoptionen0wk.jpg

Jetzt möchte ich aber nicht, dass alle Checkbuttons in einer Reihe sind, sprich ich will, dass "'AlltheWeb" eine Reihe weiter unten steht. Zunächst mal hier das Skript für die Checkbuttons:

Code (perl): (dl )
1
2
3
my $pageframe = $page1 -> Frame (-background => 'sky blue');
$pageframe -> pack();
$pageframe->Checkbutton(-text=>"AlltheWeb", -font=>'{Bimini} 12 {bold}', -background=>'sky blue', -activebackground=>'sky blue', -variable=>\$value)->pack(-side=>'left');


Um "AlltheWeb" eine Reihe tiefer zu bekommen, hab ich schon Folgendes probiert:
Code (perl): (dl )
$pageframe->Checkbutton(-text=>"AlltheWeb", -font=>'{Bimini} 12 {bold}', -background=>'sky blue', -activebackground=>'sky blue', -variable=>\$value)->pack(-side=>'bottom');


Das hat leider nicht geklappt. Weiß jemand, wie man "AlltheWeb" eine Reihe tiefer bekommt? Vielen Dank.

Gruß

TheDHK\n\n

<!--EDIT|TheDHK|1169743867-->

View full thread Checkbuttons und pack()...: Anordnung von Checkbuttons