@txesmi Thank you. It worked for me.

@Malice I changed my code to work perfectly. And I used that way (replaced "str_cat" with "str_cpy"):

Code:
while(time_passed < 20)
   {
   	movie_camera1.pan -= 0.5*time_step;
   	time_passed += time_step/16;
   	if (time_passed >= 0.1) str_cpy((location_info.pstring)[0],"Lo");
   	if (time_passed >= 0.2) str_cpy((location_info.pstring)[0],"Loc");
   	if (time_passed >= 0.3) str_cpy((location_info.pstring)[0],"Loca");
   	if (time_passed >= 0.4) str_cpy((location_info.pstring)[0],"Locat");
   	if (time_passed >= 0.5) str_cpy((location_info.pstring)[0],"Locati");
   	if (time_passed >= 0.6) str_cpy((location_info.pstring)[0],"Locatio");
   	if (time_passed >= 0.7) str_cpy((location_info.pstring)[0],"Location");
   	if (time_passed >= 0.8) str_cpy((location_info.pstring)[0],"Location:");
   	if (time_passed >= 0.9) str_cpy((location_info.pstring)[0],"Location: ");
   	if (time_passed >= 1) str_cpy((location_info.pstring)[0],"Location: C");
   	if (time_passed >= 1.1) str_cpy((location_info.pstring)[0],"Location: Ch");
   	if (time_passed >= 1.2) str_cpy((location_info.pstring)[0],"Location: Chi");
   	if (time_passed >= 1.3) str_cpy((location_info.pstring)[0],"Location: Chin");
   	if (time_passed >= 1.4) str_cpy((location_info.pstring)[0],"Location: China");
   	wait(1);
   }



Just another question:

I liked the font "Agency FB" in the Windows ,but when I write the following in a text definiton ,the default font is used though:

Code:
font = "Agency FB#25b";



Also tried:

Code:
font = "Agency_FB#25b";



PEACE

Last edited by The_KING; 06/19/13 17:29.