Leser: 1
10 Einträge, 1 Seite |
1
2
my $schrift = '{arial} 1020 {normal}';
$mw->Button(-text => 'test', -font => $schrift)->pack();
1
2
3
4
5
6
7
8
9
10
11
set list "times\ new\ roman 30 normal"; # ok
puts "Font: $list(0) Size: $list(1) Type: $list(2)"
# Font: times new roman Size: 30 Type: normal
set list "{times new roman} 30 normal"; # ok
puts "Font: $list(0) Size: $list(1) Type: $list(2)"
# Font: times new roman Size: 30 Type: normal
set list "times new roman 30 normal"; # fehler, weil new kein integer ist
puts "Font: $list(0) Size: $list(1) Type: $list(2)";
# Font: times Size: new Type: Roman
10 Einträge, 1 Seite |