[Flash video] Need to somehow have two seperate sets of Cue Points

Okay, I’ve got a video of a lecture, and I’ve got some text next to it - like a slideshow. I’ve added some cue points to make the ‘slideshow’ advance to the next slide when the lecture video reaches certain points. For example, when the video is at 55 seconds, the slideshow goes to slide 2… etc…

Here’s the code so far:

//DEFINE THE PATH TO THE FLV
server = "";
player1.contentPath = "video1.flv";
//
//ADD CUE POINTS
player1.addCuePoint("one", 55);
player1.addCuePoint("two", 95);
//
//LISTEN FOR THE CUE POINTS AND ADVANCE SLIDES
listenerObject = new Object();
listenerObject.cuePoint = function(eventObject){
	slides.nextFrame();
}
player1.addEventListener("cuePoint", listenerObject)

The thing is, I also need ANOTHER set of cue points at different times which will cue a little ‘info box’ with little bits of information. For example, if the lecturer mentions a particular passage, that’ll appear in the info box. Completely independent of the ‘slideshow’.

I have no idea how I’d do this… HELP! :slight_smile: