Auto indexing and wrap around

2004-04-20 Thread Oliver Friedrich
Hallo, when I enable AutoIndexing on a While-Loop, the node returns nothing when the loop reads beyond the end of the array. Is there a way to change this behaviour so, that the array wraps around and the WhileLoop reads the array again and again and... I could do it with a ForLoop nested

Re: Auto indexing and wrap around

2004-04-14 Thread shoneill
Hi Oliver, With Autoindexing it won't work, but manually indexing with index i mod Arraysize should do it. Not the MOST elegant solution, but it should do the trick. Regards Shane.