IT SETUP NODE GET MATCHING FIXTURE

From Macros Wiki
Jump to navigationJump to search

Up

Command

IT_SETUP_NODE_GET_MATCHING_FIXTURE <node> <index> <make> <name>


Get one of the fixtures that match the filters used for a node

Parameters

<node>
Node number (1=first fixture node)
<index>
Index to list of matching fixtures
<make>
String variable to store the fixture make
<name>
String variable to store the fixture name

Example

IT_SETUP_NODE_GET_NUM_MATCHING_FIXTURES 3, iNum
FOR i=1 TO iNum
IT_SETUP_NODE_GET_MATCHING_FIXTURE 3, i, a$, b$
   MESSAGE "Matching fixture %i of %iNum. Make = %a$, name = %b$"
NEXT i