Remember that script, the 3rd post in thread? It's so long, and kinda hard to do. Here's another one: it does the same thing, but is so much simpler. #part1 Sources clip1=AVISource("C:\Movie\t1.avi") clip2=AVISource("C:\Movie\t1.avi") clip3=AVISource("C:\Movie\t2.avi") clip4=AVISource("C:\Movie\t3.avi") clip5=AVISource("C:\Movie\t4.avi") clip6=AVISource("C:\Movie\t5.avi") clip7=AVISource("C:\Movie\t6.avi") clip8=AVISource("C:\Movie\t7.avi") #part2 trimming the clips for the larger thumbnail v1=Trim(clip2,1,158) v2=Trim(clip3,161,318) v3=Trim(clip4,321,458) v4=Trim(clip5,481,638) v5=Trim(clip6,641,798) v6=Trim(clip7,801,958) v7=Trim(clip8,961,1118) #part3 adding the fade in, fade out v1=Reverse(FadeOut(Reverse(FadeOut(v1,15)),15)) v2=Reverse(FadeOut(Reverse(FadeOut(v2,15)),15)) v3=Reverse(FadeOut(Reverse(FadeOut(v3,15)),15)) v4=Reverse(FadeOut(Reverse(FadeOut(v4,15)),15)) v5=Reverse(FadeOut(Reverse(FadeOut(v5,15)),15)) v6=Reverse(FadeOut(Reverse(FadeOut(v6,15)),15)) v7=Reverse(FadeOut(Reverse(FadeOut(v7,15)),15)) clip9=v1+v2+v3+v4+v5+v6+v7 #part4 main clip, (background immage(motion)) clip1.Crop(0,60,-0,-60).BicubicResize(480,480) #part5 applying the thumbnails on the main clip Layer(clip2.BicubicResize(100,100),"add",255, 16,40) Layer(clip3.BicubicResize(100,100),"add",255,132,40) Layer(clip4.BicubicResize(100,100),"add",255,248,40) Layer(clip5.BicubicResize(100,100),"add",255,364,40) Layer(clip6.BicubicResize(100,100),"add",255,45,170) Layer(clip7.BicubicResize(100,100),"add",255,190,170) Layer(clip8.BicubicResize(100,100),"add",255,335,170) Layer(clip9.BicubicResize(160,160),"add",255,160,300) return last And if you don't want the larger thumbnail that plays few sec. of each clip, just take out part2, part3, and the last "Layer". Is that simple.