I Want to make this more efficient
Does anyone know a way to streamline this?
its area reset button for a whole bunch of MC (total of 70)
this is just a section.
so on release I want to send the MCs back to their origins. this does it, but its hell to code.
any effeciency advice?
==============================
_root.reset_btn.onRelease = function (){
_root.word0._x=26.1;
_root.word0._y=133.9;
_root.word1._x=26.1;
_root.word1._y=170.1;
_root.word2._x=26.1;
_root.word2._y=206.3;
_root.word3._x=26.1;
_root.word3._y=241.9;
_root.word4._x=26.1;
_root.word4._y=277.5;
_root.word5._x=26.1;
_root.word5._y=313.1;
_root.word6._x=26.1;
_root.word6._y=369.9;
_root.word7._x=26.1;
_root.word7._y=403.9;
_root.word8._x=26.1;
_root.word8._y=437.8;
Thanks in advance.
Mark