PDA

View Full Version : Check if a Movie is playing - Please Help


28dead
02-15-2003, 02:02 AM
Pleaaaaaseeee Helpies!!!!

movie1 is playing and stops on, say, frame 15 in its own timeline.

I want to click at button in the main timeline and tell movie1 to play from frame 16 to 30 and and also play movie2

i.e

movie1 is a title to a section, when you click on a button for text from another section movie1 header fades out and movie2 header slides in.

please help its so difficult to gethelp starting out

thanks

ben

cyrix_m
02-15-2003, 09:07 AM
Hi 28dead

As far as I can understand, I guess you want to do the entire animation in one scene.

Ok... you can use your movies on differnt layers on the same frames of the timeline... I think that sud solve your problem... chk out the x n y co-oridinates as well...

farafiro
02-16-2003, 08:55 AM
that depends on how you load the movies
into levels, targets or just they r on the stage

subquark
02-17-2003, 05:35 PM
if loaded swfs:

on (release) {
_level1.play(16);
_level2.play();
}

if movieclips:

on (release) {
_root.mc1.play(16);
_root.mc2.play();
}

put a stop(); on frame 30