question

j08j avatar image
0 Likes"
j08j asked j08j commented

Flexscript coding problem

I use code to create the following two fields. How do I use code to check "Dynamic"?

  1. treenode focus5 = list;
  2. string fieldTypeName5 = "ExpressionField";
  3. treenode newField5 = function_s(focus5, "addField", fieldTypeName5);
  4. newField5.name = "Content";
  5. treenode Expression5 = newField5.find("expression");
  6. string Code5 = "Variant value = param(1);\n\
  7. Variant puller = param(2);\n\
  8. treenode entry = param(3);\n\
  9. double pushTime = param(4);\n\
  10. return /**/value.as(Storage.Slot).slotItems.length/**direct*/;\n\
  11. ";
  12. Expression5.value = Code5;
  13.  
  14. treenode focus6 = list;
  15. string fieldTypeName6 = "LabelField";
  16. treenode newField6 = function_s(focus6, "addField", fieldTypeName6, 1);
  17. newField6.name = "ID";
截圖-2024-05-16-下午25214.png


Thanks.

FlexSim 24.0.2
flexscriptcodeflexscript coding
· 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.

1 Answer

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered j08j commented

Setting the "isDynamic" node of the field to 1 should to the trick.

  1. newField.subnodes["isDynamic"].value = 1;

capture1.png


capture1.png (11.1 KiB)
· 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.