Hello,
If I place the following code in the action attached to a model in order to "store" the name of the model for future use...why does the name that gets stored correspond to the LAST model that had this command in its action??
Code:
string entname(30);
action model1
{
...
str_for_entfile(entname, me); MODELS[my.offset] = handle(entname);
...
}