>>It may be simple but
>>I can't figure how to set font
>>in tk widget /my font is cyrillic font/
>>please help !
>>___
>
[code snip]
>If your font name has more than one word in it, you need to put it
>between braces like mentioned above.
>32 is just
>>It may be simple but
>>I can't figure how to set font
>>in tk widget /my font is cyrillic font/
>>please help !
>>___
>
[code snip]
>If your font name has more than one word in it, you need to put it
>between braces like mentioned above.
>32 is just
>It may be simple but
>I can't figure how to set font
>in tk widget /my font is cyrillic font/
>please help !
>___
use Tk;
use strict;
my $top = MainWindow->new();
my $text = $top->Label(
-font => '{Courier New Cyr} 32',
-text => 'Try me',)->p