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);
}