question

Matthew Gillespie avatar image
0 Likes"
Matthew Gillespie asked Matthew Gillespie commented

Rename area without losing connections

I have an area that contains lots of locations and is connected up to lots of other areas. I would like to rename the area, but the only way I can see to do that is to change the area name on each object which will delete all the connections.

FlexSim HC 5.1.0
hcarearename
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Matthew Gillespie avatar image
2 Likes"
Matthew Gillespie answered Matthew Gillespie commented

Currently there isn't an easy way to do this through the interface, but here's a script you can run that will rename the area:

  1. string oldName = "BedArea";
  2. string newName = "MyArea";
  3.  
  4. for(int i = 1; i <= content(model()); i++)
  5. {
  6. treenode obj = rank(model(), i);
  7. if(getvarstr(obj, "AreaName") == oldName)
  8. setvarstr(obj, "AreaName", newName);
  9. }
  10.  
  11. setname(node(oldName, AreasNode), newName);
  12.  
  13. treenode globalVar = node(concat("MODEL:/Tools/ModelLibraries/FlexsimHC/globalvariables/", oldName));
  14. setname(globalVar, newName);
  15. sets(first(globalVar), newName);
  16.  
  17. refreshglobalvariables();
  18. UpdateReferences(oldName, newName);

Just replace BedArea with the name of the area you want to rename and MyArea with the new name.

· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.