mrand01
12-16-2004, 05:17 PM
objMediaListen.cuePoint = function(objEvent:Object) {
trace (objEvent.cuePointName.substring(3));
var strTemp:String = runCuePoint(objZelnorm.objCuePoints["objCuePoint" + objItemToLoad.objMovie.iNumber]["objCue" + objEvent.cuePointName.substring(3)]);
trace (strTemp);
trace (objEvent.cuePointTime);
trace (objEvent.target.contentPath);
}
the trace window output is :
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
Any idea WHY the same cuePoint fires off 4 times?
trace (objEvent.cuePointName.substring(3));
var strTemp:String = runCuePoint(objZelnorm.objCuePoints["objCuePoint" + objItemToLoad.objMovie.iNumber]["objCue" + objEvent.cuePointName.substring(3)]);
trace (strTemp);
trace (objEvent.cuePointTime);
trace (objEvent.target.contentPath);
}
the trace window output is :
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
0
hitCue
2
videos/vid4.flv
Any idea WHY the same cuePoint fires off 4 times?