What is it with you guys tonight? You're not answering my question. Are these 2 (or more...) seperate movies embedded in the same (or not...) html, or will these external movies be loaded all be loaded within the main movie.
If it's the latter, then you can set a variable in the main movie by adding _level0 to the variable when defining it, making it a global variable (you could also use _global), that can be set or read from anywhere.
Thus if you set a variable in your main movie...
_level0.my_var1 = "watson";
Then when you've loaded an external movie, you could from that external movie either read that variable...
if(_level0.my_var1 == "watson"

{
//Do someting...
} else {
//Do something else...
}
...Or you could event set it from that loaded movie with...
_level0.my_var1 = "Bill";
Regards,