Thread: for cycle
View Single Post
Old 26th January 2011, 20:46   #1  |  Link
fenomeno83
Registered User
 
Join Date: Aug 2006
Posts: 336
for cycle

Hello. I need to write in a script a code like this

//I want load, process and save 1.jpg, 2.jpg, 3.jpg



for (i = 1; i <= 3; i++)

{

string1 = String(i)
string2 = string1 + ".jpg"
ImageSource(string2)
.....
.....
ImageWriter (string2,0,0,"jpg")
i = i + 1;
}


How can I implement loop in avisynth?
thanks
fenomeno83 is offline   Reply With Quote