How do you move an item in a array in MEL ?
move $bballArray[0] -y 20;
From what I recall I don't have to set string, int, with Python, when I begin to learn Python soon, it's a tad annoying; atleast with JS it's smart, it knows when it's a int or string.
Replies
move -r 0 20 0 $array[size($array)-1];
no he meant it has the be the last argumeant, mel is opposite to python in that it takes is keyword or flags arguments first, than takes what it is working on last.