question

Ryusuke T avatar image
0 Likes"
Ryusuke T asked Ryusuke T commented

How to edit background color with script

Hi,

I wanted to edit the background color and ran the script below.

-----------------------------------------------------------------------------------------------------

/**Custom Code*/

Object current = param(1);

treenode activity = param(2);

Token token = param(3);

treenode processFlow = ownerobject(activity);


for (int i = 1; i <= Model.find("ModelBackground1").find(">visual/shape").subnodes.length; i++) {

Model.find("ModelBackground1").find(">visual/shape").subnodes[i].subnodes[1].subnodes[1].value = 0;

Model.find("ModelBackground1").find(">visual/shape").subnodes[i].subnodes[1].subnodes[2].value = 0;

Model.find("ModelBackground1").find(">visual/shape").subnodes[i].subnodes[1].subnodes[3].value = 0;

}

-----------------------------------------------------------------------------------------------------

The tree information and UI are changing correctly, but the actual background color remains the same. Am I missing some settings?

image001.png

image002.png

I've confirmed that setting the color manually can change it.


Thanks in advance.

FlexSim 23.0.9
backgroundchange color
image001.png (70.8 KiB)
image002.png (65.7 KiB)
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
1 Like"
Matthew Gillespie answered Ryusuke T commented

You're missing the function that updates the DWG.

  1. applicationcommand("updatedwglayerlist", background, shapeNode);

Here's an example script of it all working

  1. Object background = Model.find("ModelBackground1");
  2. treenode shapeNode = background.find(">visual/shape");
  3. Color newColor = Color.blue;
  4.  
  5. for (int i = 1; i <= shapeNode.subnodes.length; i++) {
  6.     treenode colorNode = shapeNode.subnodes[i].first;
  7. colorNode.value = 3;
  8.     colorNode.subnodes[1].value = newColor.r * 255;
  9.     colorNode.subnodes[2].value = newColor.g * 255;
  10.     colorNode.subnodes[3].value = newColor.b * 255;
  11. }
  12.  
  13. applicationcommand("updatedwglayerlist", background, shapeNode);

Note, that while this script works now, it is relying on the current tree structure and there's no guarantee that this tree structure will remain the same going forward.

· 5
5 |100000

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