Below is an example of using cue points for video transitions. Two external FLV files dissolve into one another. See the code below. It’s perhaps not the best coding scheme but it works for now. There is a cue point 5 seconds from the end of each of the files which trigger the dissolve.
[as]var v1List:Object = new Object();
var who = v2;
v1List.cuePoint = function(cues) {
v1.onEnterFrame = fader;
who = v2;
v2._alpha = 100;
v2.v1.play();
}
v1.v1.addEventListener(“cuePoint”,v1List);
var v2List:Object = new Object();
v2List.cuePoint = function(cues) {
v2.onEnterFrame = fader;
v1._alpha = 100;
who = v1;
v1.v1.play();
}
v2.v1.addEventListener(“cuePoint”,v2List);
function fader() {
this._alpha -= 2;
if(this._alpha < 1) {
this.swapDepths(who);
this.v1.rewind();
delete this.onEnterFrame;
}
}[/as]







Hmm very interesing Lee, exacty the same effect I tried to make. Now I have idea, how to make it. Thanks
Here is a tool help you “Video Transitions with Cue Points” , haha.
Get help at http://www.flash-video-mx.com
HI .. it is very good example. Thanks for posting it. Is there any chance that you will make available the source files? (fla and flv’s) to see how , where is the script and how is it all done?
I am new in this and it would help heap.
Thanks very much!!!
Martin
Hi i need the same thing can i see the source? Becouse i whant to make this effekt in the same .fla, i try to use thisone but i’m not the best in AS and dont workd best, not even want replay the fla.
can some one help me? 
Thx
Ps: Sorry for not the best English.
Do you have FLV file or can you give me more details
Thank you