Hello >>
For some reason my code wont work when both instructions follow each other (on the rollover state). Yet when the commands are run independently, they each work.
What I am trying to achieve is to pull out an MC from the library, attatch it to another MC, which IT is then to MASK via setMask. Simple eh.
What error or impatience have I been misdirected by?
roller_mc.onRollOver = function(){
object_mc.attachMovie(“mask”,“mask_mc”,1);
object_mc.setMask(mask_mc);
}
roller_mc.onRollOut = function(){
object_mc.mask_mc.removeMovieClip();
}
thanks for advice!