From: Bruce S. <Bru...@nc...> - 2008-10-28 18:57:58
|
In Visual 3 (the production version), there is no support for unicode in label objects or display (window) titles. In Visual 5 about to be released, the following program displays Spanish correctly: #!/usr/bin/env python # -*- coding: latin-1 -*- from visual import * label(text=u'¿No está la niña?') However, even in Visual 5 there isn't yet unicode support for display titles. Bruce Sherwood Poul Riis wrote: > I can print the special Danish characters this way: > print 'Danish characters: > '+unichr(230)+unichr(248)+unichr(229)+unichr(198)+unichr(216)+unichr(197) > > - but how can I use them in display titles? > > > Poul Riis > |