I would like to know how I should frame the syntax so as to access the currentframe of a movie clip in an array. Here's my take on it....
Code:Segment1:array = mc1, mc2, mc3, mc4 for (i=0 , i < segment1.length, i++) { var seg1_item = segment1[i] seg1_item.addEventlistener (Event.ENTER_FRAME, revealerlogic); } Function revealerlogic (e:Event){ if (seg1_item.currentFrame == 8){ //is this syntax right? revealer.y +=(revealer.y+ 253)/4 } }