Jan 3, 2005 #1 ashu24 Technical User Jan 25, 2002 9 IN Hi, I want to a moving Film strip and when i rollover any image on film the Film motion should stop. How to do that?? can any one help me? Ashutosh
Hi, I want to a moving Film strip and when i rollover any image on film the Film motion should stop. How to do that?? can any one help me? Ashutosh
Jan 4, 2005 #2 Kijori Technical User Jan 22, 2002 67 SG if you are using motion tween to animate your film strip, you can use this: Code: on (rollOver) { stop(); } to continue playing when mouse-out: Code: on (rollOut) { play(); } i think this should be it. Upvote 0 Downvote
if you are using motion tween to animate your film strip, you can use this: Code: on (rollOver) { stop(); } to continue playing when mouse-out: Code: on (rollOut) { play(); } i think this should be it.