I´ve run into a problem when I use non-english letters with the text command.
When you run the little code below, the sentences with non-english characters in them will be clipped at the end.
This only occurs when the font I´m using has letters with different widths, like Arial. With Courier there is no problem.
Any ideas?
When you run the little code below, the sentences with non-english characters in them will be clipped at the end.
This only occurs when the font I´m using has letters with different widths, like Arial. With Courier there is no problem.
Any ideas?
Graphics 368,400,2 font = LoadFont("Arial",16) SetFont font Text 0,0,"This is just än exåmple öf the pröblems with nön-english letters" Text 0,20,"This is just an example of the problems with non-english letters" Text 10,40,"This is just än exåmple öf the pröblems with nön-english letters" Text 10,60,"This is just an example of the problems with non-english letters" Text 20,80,"This is just än exåmple öf the pröblems with nön-english letters" Text 20,100,"This is just an example of the problems with non-english letters" Text 30,120,"This is just än exåmple öf the pröblems with nön-english letters" Text 30,140,"This is just an example of the problems with non-english letters" WaitKey() End