Code: Select all
for (int i=0, i< textline.lenght(), i++)
{
AddStatic text (100,600, textline[i]);
}
Does anyone have a class for this puropse?Or some advice?
Code: Select all
for (int i=0, i< textline.lenght(), i++)
{
AddStatic text (100,600, textline[i]);
}
Code: Select all
IGUIStaticText * mySText=NULL;
for (int i=0, i< textline.lenght(), i++)
{
if (mySText)
{
mySText->remove;
mySText=NULL;
}
mySText = AddStatictext (100,600, textline[0..i]);
usleep(1000);
}