1) If I wanted to modify my script how would I do so? I'm new to AVIsynth you see, this is in fact the first time I've used it successfully. Here is my current script:
#------------------------------------------------------
# 1 Load Menu Background & Mask
BackGround = AviSource("Background.avi").ConvertToRGB32()
Mask = AviSource("Mask.avi").ConvertToRGB32()
# 2 Load Clips
Clip1=AviSource("ep601.avi").ConvertToRGB32()
Clip2=AviSource("ep602.avi").ConvertToRGB32()
# 3 Start the Menu as a blank clip
Menu = BlankClip(Background).loop(600)
# 4 Size & Place the Clips
Clip1 = Clip1.LanczosResize(263, 220)
Menu = Layer(Menu, Clip1, "add", 255, 161, 231)
Clip2 = Clip2.LanczosResize(279, 210)
Menu = Layer(Menu, Clip2, "add", 255, 529, 240)
# 5 Mask & Place the Background
BackGround = Mask(BackGround,Mask)
Layer(Menu, BackGround, "add", 255, 0, 0)
# 6 Resize to D1
BilinearResize(720, 480)
#------------------------------------------------------
Where wouldI put the ConvertFPS command and how do I convert these AVIs (which are DivX/Xvid encoded) to MPEG2 with the script?
2) Do I use dgpulldown on the files before or after I run the script? On the AVI source files or the resulting MPEGs (after I run the script I convert the AVI to MPEG2 with TMPGEnc).
3) This one seems easy enough, but I suppose I'd have to convert the AVI source files to MPEG2, then drag them into DVD-Lab... and then how would I be able to use the AVIsynth script on the MPEGs?
Sorry for so many questions, I'm sure I'll be getting the hang of this avisynth thing soon enough.

Thanks in advance if you're able to reply with answers.
