1
2
3
4
Tk::Error: Can't set -justify to `left' for Tk::ROText=HASH(0x1f2ae24): Bad opti
on `-justify' at c:/perl/site/lib/Tk/Configure.pm line 46.
at c:/perl/site/lib/Tk/Derived.pm line 294
Tk callback for event
1
2
3
4
5
6
Tk::Error: Undefined subroutine &main::2.10861206054688 called at c:/perl/site/l
ib/Tk.pm line 423.
\2.10861206054688
(horizontal scrolling command executed by
.entry
)
2012-07-27T06:14:42 Molaf[...]
Zu 4.) ich baue ja keine Widgets selber, meist reichen mir ja sogar die Standarddinger.
2012-07-26T15:06:33 MolafCode: (dl )1
2Tk::Error: Can't set -justify to `left' for Tk::ROText=HASH(0x1f2ae24): Bad opti
on `-justify' at .....
Diesen Fehler erzeugt ein -justify für das Widget Spinbox.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#!/usr/bin/perl -w use strict; use warnings; use Tk; use Tk::Spinbox; my $win=Tk::MainWindow->new(); $win->Spinbox( -from=>0, -to=>10, -justify=>'left', # funktioniert auch bei 'right' und 'center' )->pack(); my $text=$win->Text( -height=>5, -width=>40, )->pack(); $text->Insert("Das ist ein schlauer Text"); $text->tagAdd("Test",'1.0', '1.10'); $text->tagConfigure("Test", 'justify','left','underline',1); $win->MainLoop();
2012-07-26T15:06:33 Molafich schreibe grad ein Tool um mir das Erstellen von GUIs zu erleichtern. Dazu gehört es, jedes üblicherweise von mir genutze Widget einmal zu erstellen. Jede Option die dieses Widget hat, wird einmal automatisch durchprobiert.