I have a video player that has a quality button that toggle between high and low bandwidth. What it does is save the playheadTime to a variable, changes the player.source to either the high or low bandwidth FLV and then I set the playheadTime equal to the variable containing the last playheadTime. This is working fine.
My issue is this video has a series of AS cue points that prompt questions. When changing the quality, its like the playhead zips past all of the cue points and calls them out in an instant.
I’ve tried doing:
player.playheadTime = lastStreamTime;
player.seek(lastStreamTime);
player.seekSeconds(lastStreamTime);
and they all have the same effect. Any ideas to stop that? My only solution is to make a timer that doesnt allow cue points until after X amount of seconds have gone by after the player has entered the ‘playing’ state.