Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pause Animation on rollover

Status
Not open for further replies.

ashu24

Technical User
Jan 25, 2002
9
0
0
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
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top