Hi guys, Say, I have two Arrays. A name array A value array I'd like to change the values of the nameArray, by using the values from the valueArray. Essentially this... setAttr nameArray[0] valueArray[0]; setAttr nameArray[1] valueArray[1]; Unfortunately, I only know how to access or move through one array at a time. say…
There's also this format of for loop which is all defined together. I personally prefer this one when I need to utilize individual array indices string $array[] = { "A", "B", "C" }; for ($i=0; $i<`size $array`; ++$i) { warning $array[$i]; }