PDA

View Full Version : Rollover Pause Button Doesn't Work With MCs In Movie


Eddie O
09-25-2001, 12:44 PM
Have created a movie that has multiple MCs.

I created a pause button:
on (rollOver) {
stop ();
}
on (release, rollOut) {
play ();
}

Problem:
The main movie pauses when you roll over the button. However, if a MC begins to play, the button will not work.

Thanx...Eddie

red penguin
09-25-2001, 04:51 PM
you gotta target that s*it, Eddie!

on (rollOver) {
myMovieClip.stop ();
}
on (release, rollOut) {
myMovieClip.play ();
}

red penguin
09-26-2001, 07:13 AM
Eddie...
You can now attach things to your replies!
Put your file up and I'll take a look at it....course, it's gotta be zipped!

Eddie O
09-27-2001, 05:33 PM
Presently, the pause button stops the animation, as it should, at any frame, including both MCs. The problem is, is that when you rollout of a MC, that particular MC should continue playing at the frame the animation stopped. Instead, it starts playing the next frame of the main timeline. Thanx again...Eddie

red penguin
09-27-2001, 08:53 PM
I'll get back to you presently, EddieO...

defrex
10-01-2001, 09:14 PM
try this, if its wrong i didn't understand the problem right.

Eddie O
10-01-2001, 11:33 PM
Appreciate your post, you were close, but here was what I was looking for. Thanx...Eddie