FLV Video & Cue Points

Ok so I am fairly new to FLVs in Flash 8. I currently have a video using the FLV component. What I am trying to accomplish is to load another MC once the video is done playing. I am thinking this can be done by using cue points?

So my question is can I do this with cue points or should I try some other “simplified” method. Thanks.

ns.onStatus = function(infObj:Object) {
if (infObj.code == “NetStream.Play.Stop”) {
playNextClipMockFunction();
}
};

This gets called automatically when a clip stops.