Question
How to make time varying for loop expression that changes value for every sec..
example. I've made this expression inside Source Text Property.
for (t = Math.round(time); t<10 ; t++){
t
}
When I click away. This loop runs through and shows only last value that is 9. But all I want is limit this loop based on time. So if I change this expression to
for (t = Math.round(time); t<10 ; time){
t
}
After effects goes unresponding. So how can I use these type of loops in after effects.
