PDA

View Full Version : Importing avs and assigning to a variable.


Prodater64
14th August 2005, 13:38
Is there any way to import an avs script wich its result is a video and assign it to a variable:

video=import("MyVideo.avs")
last=video

I tryed this but it doesn't work.
_________________

Inc
14th August 2005, 13:39
video=import("MyVideo.avs")
return video

stickboy
14th August 2005, 21:52
Does Import actually return a value?

Try this:Import("MyVideo.avs")
video = lastBut this way is better:
video = AVISource("MyVideo.avs")