Ok, I have been looking everywhere for this...so I have now decided to post to see if someone can help me.

I have two FLV files playing on the stage. The main FLV is instance is: MyVideo

the 2nd is MyVideo2

I have imported the videos using the wizard. The 2nd video is just a movie I created in Affter Effects that says...loading please wait....this is a really nice video and I don't want it to just use a standard preloader. Anyway, the goal is when the playback for "MyVideo" begins I would like "Myvideo2" to = visible = false;

I have tried this many different ways and have been unsuccessful. I am obviously a newb at this. Also, does anyone know where I can get a list of all available eventListener actions...etc? One of my problems is that I don't even know what commands are available and what they can do. Thanks!
----Code is commented because I could not get it to work. -----

//var nc:NetConnection = new NetConnection();
//connection_nc.connect();
//var stream_ns:NetStream = new NetStream(connection_nc);
//my_video.attachVideo(stream_ns);
//var duration:Number = 0;
//var ratio:Number = 0;
//var id:Number = 0;
//
//
//nc.connect(null);
//
//
//
//myNetStream = new NetStream(nc);
//
//myVideo.attachVideo(myNetStream);
//
//
//myNetStream.play("CustomerStateOfMindPart2.flv");
//
//myNetStream.pause();
//
//myNetStream.onStatus = function(info)
//
//{
//
// if (info.code == "NetStream.Play.Start")
//
// {
//
// MyVideo2._visible = false;
//
// }
//
//};