Making two different movies react

Hello Dudes and Dudettes,

Does anyone know how to make
two different movies react on the same
HTML page?

For example… I have a movie in
the center of my html page. Once
this movie ends, I want it to start
an other movie that is in my header.
:crazy:

Any ideas?

Thanks! And sorry for my poor english :thumb:

Neuhaus3000

without using javascript…
HEADER

myLC=new LocalConnection();
myLC.connect(“myconnection”);
myLC.playit = function (string) {
_root.play();
}

CENTER MOVIE

myLC=new LocalConnection();
myLC.connect(“myconnection”);
myLC.send(“myconnection”,“playit”,"");

Hey clownstaples,

Thanks for the tip! :slight_smile:

I will make some tests later this week.

Neuhaus3000 :crazy: