ATTENTIONThis FlexSim Community Forum is read-only. Please post any new questions, ideas, or discussions to our new community (we call it Answers) at https://answers.flexsim.com/. Our new Question & Answer site brings a modern, mobile-friendly interface and more focus on getting answers quickly. There are a few differences between how our new Q&A community works vs. a classic, threaded-conversation-style forum like the one below, so be sure to read our Answers Best Practices. |
flexsim.com |
#2
|
|||
|
|||
Those with blue names can be found using the function of the same name and passing the object in as the parameter.
|
The Following 2 Users Say Thank You to Jason Lightfoot For This Useful Post: | ||
luis quinones (08-18-2010) |
#3
|
||||
|
||||
Nodes in the tree that are blue are called object attributes. You can see a list of those nodes in Help > Attribute Hints. You can access these attributes on an object directly without having to traverse the tree structure:
Code:
treenode processor = node("/Processor1",model()); treenode staytimeavg = stats_staytimeavg(processor); return getnodenum(staytimeavg); Code:
treenode processor = node("/Processor1",model()); treenode staytimeavg = node(">stats/staytime/stats_staytimeavg",processor); return getnodenum(staytimeavg); |
The Following 3 Users Say Thank You to Phil BoBo For This Useful Post: | ||
Pablo Concha (08-19-2010) |
Thread | Thread Starter | Forum | Replies | Last Post |
Sorting a list of nodes in the tree | Ben Wilson | Tips and Tricks | 3 | 02-27-2013 07:10 AM |
The nodes in active view tree don't have unique names. | Tom David | Gripes and Goodies | 7 | 01-31-2013 07:01 AM |
Conect ports in the tree | Sebastian Hemmann | Q&A | 3 | 01-14-2010 08:41 AM |
Accessing Data of a Recorder and Referencing Nodes in the Tree | Jan Brandau | Q&A | 5 | 04-22-2008 07:05 AM |
Access to the tree variables | Iulian Marin Ion | Q&A | 2 | 02-06-2008 09:15 AM |