> Thanks-- that was exactly what I was looking for!!!
This may simplify your diagram, but unless you are doing UI programming,
I'd say that you are going to suffer some pretty big performance hits
and possible race conditions with other parts of your diagram.
Ideally what you wind up doing is taking the cluster apart into the
chunks you need for a given section of diagram, using and possibly
modifying it using unbundle and bundle, and then rebuilding it at the
right edge of the diagram. If you want it to cycle around to the next
iteration, use a shift register, not a control to do this.
Also, keep the number of accesses, via locals, terminal, and properties
to a small number and use more wires. Don't get in the habit of using
the
se things as though they are variables in C or Basic. It might not
affect performance much this time, but it is a bad approach and sooner
or later you will need to learn the better style of doing this.
Greg McKaskle