question

Devdatta D avatar image
0 Likes"
Devdatta D asked Andrew O commented

Change conveyor length using GUI

I am trying to edit the length of conveyor using gui. When I add coldlink to length variable I can see the current length but when i change it it doesn't change the conveyor length visually.

FlexSim 22.2.4
conveyorguiconveyor length
· 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.

1 Answer

Matthew Gillespie avatar image
1 Like"
Matthew Gillespie answered Devdatta D commented

You should use a coldlinkx node and get/set the HorizontalLength property of the conveyor.

  1. Object conveyor = Model.find("StraightConveyor1");
  2. string property = "HorizontalLength";
  3.  
  4. if (eventdata) {
  5.     conveyor.setProperty(property, getviewtext(c).toNum());
  6.     repaintall();
  7. } else
  8.     setviewtext(c, conveyor.getProperty(property));

Here's an example model, ConveyorLengthGUI.fsm


· 12
5 |100000

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