question

Tee Hiett avatar image
0 Likes"
Tee Hiett asked Tee Hiett commented

How do I raise all objects up 7 meters?

I have a model built on the ground floor (C = 0). I would like to select all objects and raise them up 7 meters so I can import the model as the second story to another model? It would be best if I didn't have to select each object and raise it independently.

Thanks, Tee

FlexSim HC 5.1.0
selected objectsobjectsedit selected objects
· 1
5 |100000

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

Sam Stubbs avatar image
2 Likes"
Sam Stubbs answered Tee Hiett commented

If you shift select the entire group (red highlighted) and then click on one of the selected objects to "yellow highlight" it, you can use the mouse wheel to scroll up and down moving all the selected objects at the same time.

· 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.

Matthew Gillespie avatar image
0 Likes"
Matthew Gillespie answered Tee Hiett commented

You can run this script:

  1. for(int i = 2; i <= content(model()); i++) {
  2. set(spatialz(rank(model(), i)), 7);
  3. }
· 1
5 |100000

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