I have a movieclip mc_content. I am using it to slideshow 200 images. I am using this code for transition-
stop();
setInterval(myFunction, 6000);
function myFunction()
{
import mx.transitions.;
import mx.transitions.easing.;
if(mc_content._currentframe==mc_content._totalframes){
mc_content.gotoAndStop(mc_content._currentframe)
}else{
TransitionManager.start(mc_content, {type:Fade, direction:Transition.IN,
duration:2, easing:None.easeNone, numStrips:20, dimension:5});
mc_content.nextFrame();
}
}
I have a pause button at main timetine and using the code;-
on (press)
{
mc_content.stop();
}
But its not working. Plz help me. I want to use the pause button to pause the movieclip at any image where I click it.