Hello people, I'd like to be able to press a button and get a set of movie clips arranged in a row, how would I go about this?
                
                A: 
                
                
              
            Well, that is really a general question. I suppose you are placing your AS code inside frames. If that's the case you should have all MovieClips available by their names. So if we pretend that you already have a collection of clips you would like to align:
var desiredRowYposition = 100;
buttonMc.onClick = function() {
   for (var mc in mcCollection) {
       mcCollection[mc]._y = desiredRowYposition;
   }
}
                  skrat
                   2009-05-11 12:49:25