I found that post also I could not get it to work, I am going to play around with it some more. **now where did my old c programming book end up at** smirk

UPDATE!

I got it to work by changing that code a bit i used...

STRING** tst;
tst = malloc((long) sizeof(STRING*) * 10);
var i = 0; // declared a var
for(i=0;i<10;i++) // removed the int
tst[i]=str_create("#10");

next...
How would I use that with
TEXT* box =
{
layer = 15;
string(tst);
flags = VISIBLE;
}
did not work...

Last edited by xxGOTARxx; 03/14/09 02:32.