Hallo, hab ein Problem mit WWRAP. Ich habe zwei Strings, einen mit langem Text und einen mit kurzem Text. Der lange Text wird durch WWRAP korrekt umgebrochen, aber der zweite Text wird dann vom ersten überlagert, also nicht in die richtige, nächste Zeile geschrieben. Wie bekommt der zweite String seine richtige Zeile,sodass er nicht vom ersten String überdeckt wird. Hier mein Codebeispiel

Hello, have a problem with WWRAP. I have two strings, a long one and a shorter one. The long text have a correct wordwrap with WWRAP, but the second text has an "overlay" from the first one. so the second one didn't get the right new line. How does the second string get his right number of line, so that the first string dont cover the second string. Here is my code example

Code:
#include <acknex.h>
#include <default.c>

STRING* strTest1 = "i am a very long text,i am a very long text, i am a very long text, i am a very long text";
STRING* strTest2 = "i am a short one";

TEXT* txtOut= {
	pos_x = 20; pos_y = 20;
	font = "Arial#20";
	strings = 10;
	string(strTest1,strTest2);
	size_x = 150;
	flags = SHOW | WWRAP;
}


function main() {
	
}



ps. sorry for my bad english


my webside : www.ascalon.jimdo.de