7 Einträge, 1 Seite |
1 2 3 4 5
for(my $j = 0;$j < @name;$j++) { $profilframe->Label( -image => $photos[$j], -background => 'sky blue' )->place(-x=>'5', -y => $y + 3); $profilframe->Button( -text=>$name[$j], -background => 'sky blue', -font=>'{Bimini} 12 {bold}', -relief=>'flat', -activebackground => 'yellow', -command => sub { zeige_beschreibung($j); } )->place(-x=>'28p', -y => $y); $y += 35; }
1
2
3
4
5
6
for my $j(0..scalar(@name)-1) {
my $test = $j;
$profilframe->Label( -image => $photos[$j], -background => 'sky blue' )->place(-x=>'5', -y => $y + 3);
$profilframe->Button( -text=>$name[$j], -background => 'sky blue', -font=>'{Bimini} 12 {bold}', -relief=>'flat', -activebackground => 'yellow', -command => sub { zeige_beschreibung($test); } )->place(-x=>'28p', -y => $y);
$y += 35;
}
for my $j(0..scalar(@name)-1) {
1 2 3 4
sub zeige_beschreibung { my $ausgabe = $description[$_[0]]; $infoframe->Label( -text=>$ausgabe, -background => 'yellow' )->place(-x=>'5'); }
7 Einträge, 1 Seite |