question

Marco Baccalaro avatar image
3 Likes"
Marco Baccalaro asked Matthew Gillespie commented

How to do objectexist in 2017

I read that the objectexists is deprecated and to use treenode.rank instead.

How do I have to do it correctly? I'm not sure I'm doing it in the correct way.

If I do like this I get an exception when object does not exist:

  1. Object box = item.first;
  2. if (box.rank)
  3. box.color = Color(1,0,0);
FlexSim 17.0.0
flexscriptdot syntaxrankobjectexists
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
3 Likes"
Matthew Gillespie answered Matthew Gillespie commented

The treenode.rank line is a copy-paste mistake. If the object doesn't exist the variable should be null and so you just put the variable into an if statement.

  1. Object box = model().find("Queue1").first;
  2. if(box)
  3. box.color = Color.red;
· 19
5 |100000

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