View Single Post
Old 12th March 2007, 21:59   #611  |  Link
foxyshadis
Angel of Night
 
foxyshadis's Avatar
 
Join Date: Nov 2004
Location: Tangled in the silks
Posts: 9,559
He said sockets add a meg to the install though. I was just trying to think of hackish ways of doing it to keep the size down.

Alain, in plugins, all named arguments are optional, required ones can't have names in avisynth. It's nice to manually enter the required names, though, and then you would need that. TO get the macro to do that for you, change:
Code:
                   arglist=arglist+" "+namedargname
to
Code:
                   arglist=arglist+' "'+namedargname+'"'
And then change overwriteAll to True on the bottom, rerun it, and you should have quoted args. Good idea btw.

Last edited by foxyshadis; 12th March 2007 at 22:04.
foxyshadis is offline   Reply With Quote