thanks for that! Great idea!!!
I have downloaded and installed it, but I have no experience with this program.

I have created what the program would be in lite-c
Code:
void main()
{
	STRING* model_obj = "";
	STRING* model_mdl = "";
	int count;

	for(count=1;count<=482;count++)
	{
	   //BUILD IMPORT AND EXPORT FILENAME STRINGS
		str_cpy(model_obj,"EarthHEX");
		if(count<10)
		{
			str_cat(model_obj,"00");
		}
		else if(count<100)
		{
			str_cat(model_obj,"0");
		}
		str_cat(model_obj,str_for_int(NULL,count));
		if(count==1||count==17||count==33||count==49||count==65||count==81||count==97||count==113||count==129||count==145||count==161||count==177)
		{
			str_cat(model_obj,"p");
		}
		str_cpy(model_mdl,model_obj);
		str_cat(model_obj,".obj");
		str_cat(model_mdl,".mdl");
		
		//IMPORT OBJ
		keys_import_obj();
		insert model_obj text; //<------------
		keys_import_finalize();
		
		//EXPORT MDL
		keys_export_mdl();
		insert model_mdl text; //<------------
		keys_export_finalize();
	}
}



any help on the lines "insert model_obj text;" and "insert model_mdl text;" would be great.


also the keystroke functions I am not sure how to make it in this program, but they would look something like this:
Click to reveal..
void keys_import_obj()
{
ALT
F
I
M
M
M
M
M
M
ENTER
}

void keys_import_finalize()
{
ENTER
ENTER
}

void keys_export_mdl()
{
ALT
F
A
}

void keys_export_finalize()
{
ENTER
}


any help with this would be great


"The more you know, the more you realize how little you know..."

I <3 HORUS
http://www.opserver.de/ubb7/ubbthreads.php?ubb=showflat&Number=401929&page=1