Local Connection - Playing 2 separate swfs in succession

Hi guys,

I can’t figure out how to make this happen. I have to admit I am not an actionscript guru and especially not familiar with local connection, however would like to understand how the commands would work in order to accomplish the following:

Banner 1: plays animation until it has reached the last frame and stops.
Banner 2: is displaying a static image until banner 1 has finished and then plays an animation.

Right now I have:
Banner 1
// Code in the sending movie
sendingLC = new LocalConnection();
sendingLC.send(“lc_name”, “methodToExecute”, dataItem1, dataItem2)

Banner2
// Code in the receiving movie
receivingLC = new LocalConnection();
receivingLC.methodToExecute = function(param1, param2)
{
// Code to be executed
}
receivingLC.connect(“lc_name”);

Thank you!
D