View Single Post
Old 1st July 2004, 18:45   #20  |  Link
mg262
Clouded
 
mg262's Avatar
 
Join Date: Jul 2003
Location: Cambridge, UK
Posts: 1,148
What's the error message? Should it be

Clip = clip.PixieDust()

?

I wasn't really talking about fields, but this...


a = Pixiedust(5)
LoadPlugin("C:\Capture\AviSynth 2.5\plugins\old\Dust2.dll")
b = crop(2, 0, -2, -0).BorderMirrorH(2).Pixiedust(5)
LoadPlugin("C:\Capture\AviSynth 2.5\plugins\old\Dust3.dll")
c = crop(0, 2, -0, -2).BorderMirrorV(2).Pixiedust(5)
LoadPlugin("C:\Capture\AviSynth 2.5\plugins\old\Dust4.dll")
d = crop(2, 2 ,-2, -2).BorderMirror(2,2).Pixiedust(5)
ab = layer(a, b, "add", 127, 2, 0)
cd = layer(c, d, "add", 127, 2, 0)
layer(ab, cd, "add", 127, 0, 2)


which does work, with bordermirror as above (Didée) and BorderMirrorH having the obvious meaning.

Mohan
mg262 is offline   Reply With Quote