Cue Points Overlapping?

I’m working on a multimedia presentation that is essentially 168 slides synched to a 2hour long presentation.

I have the lecture broken into 12 chapters with cuepoints (denoting what slide to display ie. “slide001”, 00:00:00; “slide002”, 00:03:42;) inserted via the component inspector. my code uses an eventListener to watch for metadataEvent and then externally loads the correct slide in a container clip. As the video goes along, and is scrubbed, the slides sync…

my problem comes now… i have an FLVplayback instance named “display.” at labeled intervals on the timeline it plays a different chapter. when the whole thing plays, it tends to bug out and trigger a cuepoint from its previous keyframe.

for example, in chapter1.flv at 4:57 seconds it shows slide003. then when chapter1 is over, it triggers gotoAndStop(“chapter2”). at that keyframe, display loads chapter2.flv and the cuepoints for that chapter play out. however at 4:57 seconds in chapter2, it will trigger slide003.

Is this because the cuepoints are actionscript and not navigation or event? how can I make display forget the old cuepoints and only watch for those placed in that keyframe on that chapter? This is really frustrating because I thought I was done with this project and now another bag of worms popped open.