Hallo,
Thanks.
I create this function to create TEXT:
TEXT* Lteste[10];
STRING* Lname = "name";
function ArrangeLabel()
{
Lteste[0] = txt_create(1,2);
(Lteste[0])->pos_x = 10;
(Lteste[0])->pos_y = 10;
(Lteste[0])->strings = Lname;
(Lteste[0])->flags = VISIBLE;
(Lteste[0])->green = 0;
(Lteste[0])->blue = 0;
(Lteste[0])->red = 0;
}
I put the function ArrangeLabel() in the main function but did not appears the TEXT "name" when I rum the game. Why? Something is wrong in my code?