question

TEJAS G avatar image
0 Likes"
TEJAS G asked Ben Wilson commented

exception: FlexScript exception: VIEW:/nodefunctions/workspace/openworkspace

I am using Flexsim 19.1.0 ,

whenever I am opening my open I am getting this exception message :

"exception: FlexScript exception: VIEW:/nodefunctions/workspace/openworkspace"



And my model gets hang when I try to do "Open Default workplace", then I have to manually force close the model.


How to solve this issue?


FlexSim 19.1.2
error messageflexsim 19.1.2workplace
· 3
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

tannerp avatar image
1 Like"
tannerp answered Ben Wilson commented

We fixed Marcello's model through email.

To solve this issue:

1) Run the code provided below in a Script window:

  1. treenode activeViews = node("VIEW:/active");
  2. treenode backPanel = node("VIEW:/active/MainPanel/BackPanel");
  3. while (content(activeViews) > 1) {
  4. destroyobject(last(activeViews));
  5. }
  6. clearcontents(backPanel);

2) Select View -> Open Default Workspace

This should fix the model and prevent it from crashing.

· 3
5 |100000

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