Let’s say I have a table that contains one row with several numbers representing the size of something over time, e.g.
0.5 0.6 0.7 0.8 0.9
And let’s say I have a rectangle Top whose size parameters (width, height) were set to read from the table:
sizex: op(‘table1’)[0,0]
sizey: op(‘table1’)[0,0]
What I’d like to do, is, for instance, to make the table index advance in time, e.g.something like:
op(‘table1’)[0,int(absTime.seconds)]
… but that doesn’t work (and I don’t know python well enough to know what the correct syntax would be.)
How do I do that?
Thanks!