I'm getting an error that says: "illegal cue point: Time must be number and/or name must not be undefined or null". Here is the line that sets the cue points.
pubVideo.cuePointManager.setCuePoints(actionVideo[0]) I've checked the actionVideo array and all entries have a valid time and name. However, there are some times that are the same. I thought they might be the problem so I add .1 to the time so there are no duplicates and it still gives the same error. This error occurs in: getCuePointIndex(cuePointArray:Array, closeIsOK:Boolean,time:Number, name:String,start:Number, len:Number):Number And here the time is NaN and name is null. Are there any rules about setting cue points that I should know about that might give this error? Many thanks!

