First of all i want tell you then actionscript cue points only work in the flash player. You can add or remove cue points in any time in your video.
Please create actionscript 3 new file in flash cs5. And import .f4v file.

Select to imported video on the stage and on the properties panel you can see cue points

So in my video i have 3 main points its video about rectangle, circle and star. Now please select the video with rectangle and on the cue points panel add to the ‘+’ button and rename to ‘rectangle’

Then do the same for circle and for star:


Then please create 3 buttons with instance names: rectangle_btn, circle_btn and star_btn

as you know for write instance name need select component on the stage and on property panel write instance name:

Also for our video add instance name my_video.
Then please add actionscript 3 code to this project:
rectangle_btn.addEventListener(MouseEvent.CLICK, goToRectangleVideo);
circle_btn.addEventListener(MouseEvent.CLICK, goToCircleVideo);
star_btn.addEventListener(MouseEvent.CLICK, goToStarVideo);
function goToRectangleVideo(event:MouseEvent):void
{
var cuePointInstance:Object = my_video.findCuePoint("rectangle");
my_video.seek(cuePointInstance.time);
}
function goToCircleVideo(event:MouseEvent):void
{
var cuePointInstance:Object = my_video.findCuePoint("circle");
my_video.seek(cuePointInstance.time);
}
function goToStarVideo(event:MouseEvent):void
{
var cuePointInstance:Object = my_video.findCuePoint("star");
my_video.seek(cuePointInstance.time);
}


So now your cue points is ready. After compilation you can see your video playing and you can use your buttons.
Please download Cue Points source files and enjoy!
