Hi all, I've a little question.
I've a text box:
text(myString, x, y, width, height);
and i can find all character inside it:
for ( int=0; i < myString.length(); i++)
{
c=myString.charAt(i);
}
Now, there is a way to find the x and y of that specific char?
In this example, it is explained a method to compose a string in wich all chars are object, and it would be a nice method for me, but work only on a line, because the y value is always considered the same.
Thank you all.
1