Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
[ FlexSim 18.2.2 ]
Is there a way to run a script for all queues to turn their 3d shape view on/off?
Solved! Go to Solution.
[ FlexSim 18.2.2 ]
Is there a way to run a script for all queues to turn their 3d shape view on/off?
Solved! Go to Solution.
Yes, the command you need to do this is :
switch_hideshape()
If you put all your Queues into a group, this 'for' loop will turn off the shapes:
for(int i = 1; i <= Group("QueueGroup").subnodes.length; i++) switch_hideshape(Group("QueueGroup"), 0);
Set the '0' parameter above to 1 to turn the shapes back on.