Log in

View Full Version : Curiousity: is it possible to evaluate an entire AVS script using Invoke?


mf
17th January 2004, 16:19
G-Dragon and me have been discussing turning mfToon into a DLL filter. However, at first, only specific parts will be hardcoded, to ease development, to make it easier for me to keep track of what's happening, and make changes easier on my end. Now what I'm wondering, is it possible invoke an entire script such as mfToon without endless usage of Chr() (http://forum.doom9.org/showthread.php?s=&threadid=68229&highlight=dirtiest)?

Richard Berg
18th January 2004, 10:42
Eval can take an entire script file.

scharfis_brain
18th January 2004, 12:26
you could define your needed chars like this:

c34=chr(34)
c13=chr(13)
....

and then using it within the string summary:

subtitle("blabla"+c13+"blabla")