Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
[ FlexSim 21.2.4 ]
Is there a way to keep the color and shape changes after the token goes through a split box?
Solved! Go to Solution.
[ FlexSim 21.2.4 ]
Is there a way to keep the color and shape changes after the token goes through a split box?
Solved! Go to Solution.
I don't think there's a way to have child tokens "inherit" the color and shape of their parent. Depending on what you are trying to do, you may be able to successfully use the Visualization tab of the Process Flow properties window:
https://docs.flexsim.com/en/22.1/Reference/GeneralModelSettings/ProcessFlowGeneralProperties/Process...
This allows you to change shape and color based on label value, and those are inherited. But in the case where you manually set the color and shape of the token, we don't have a way to copy those settings.
The shape/color don't really 'revert'. The Split activity just doesn't copy these settings to the newly created token(s).
You can do this manually by reading the color and shape from the original token via the 'splitID'.
treenode otherToken = token.splitID; token.color = otherToken.as(Token).color; token.setShape(getsdtvalue(otherToken, "shape"));
You could post a suggestion to add an option to copy the color/shape to the split activity.