G'day all, I'm making this the 1st of some Stickys I plan to make.
"FOR" needs a matching "NEXT"
Whenever you have a "for" you need to have a matching "next".
The for/next pair set the track scope for the statements in between. So either:
Or more simply:
Alternative below but it's simpler just to do everything inside one for/next.
Hope this helps some people :)
2nd sticky will be on If / else / endif
"FOR" needs a matching "NEXT"
Whenever you have a "for" you need to have a matching "next".
The for/next pair set the track scope for the statements in between. So either:
Code:
for 1
set quantize cycle
next
for 1
TrimEnd
next
for 1
set quantize loop
next
Code:
for 1
set quantize cycle
TrimEnd
set quantize loop
next
Code:
for 1
set quantize cycle
for 1
TrimEnd
for 1
set quantize loop
next
next
next
2nd sticky will be on If / else / endif
Scripting Fundamentals "FOR" "NEXT"
0 commentaires:
Enregistrer un commentaire