my_txt = txt_create(1,1);

my_txt2 = txt_create(1,1);

... and so on. then you can change the position of my_txt.pos_x and .pos_y


inside a model's action, try:


while(1)
{
vec_set(temp,my.x);
vec_for_screen(temp,camera);
my_txt.pos_x = temp.x;
my_txt.pos_y = temp.y;
wait(1);
}


dunno if this works... but it should move the text to the model's position.

good luck,
micha


~"I never let school interfere with my education"~
-Mark Twain