Hi,
wenn Deine Ausgabe Unicode unterstützt, kannst Du Pfeile als "\x{2191}" bzw. "\x{2193}" an Deinen String anhängen, ansonsten hilft Dir vielleicht ein anderer Zeichensatz (z.B. 'Symbol' unter Win), allerdings musst Du dann ein extra widget für den Pfeil bauen. Verwendung von -font:
my $fontsize = 8;
my $label = $window->Label(
-font => "{Symbol} $fontsize {normal}",
-text => "\xAD"
);
Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"