Hello, I'm hoping there is someone who can assist me with an expression question.
I am trying to find a way to display text based on frame number. Because there will be around 100 description elements, and several may need to display at the same time, I imagine an expression will be the best way to do this.
What I mean is that I will have a list that has the following info: Frame Start Time, Frame End Time, and Description. The text in Description should show from the Frame Start Time until the frame end time. If there is already one Description showing when another Description should start showing, the first one (or ones) should remain and the next one should be added on the next line.
Example:
Frame Start Time Frame End Time Description
1 300 Text 1
247 388 Text 2
330 480 Text 3
So using the above examples:
Frame 1-247 will display:
"Text 1"
Frame 248-300 will display:
"Text 1"
"Text 2"
Frame 301 - 330 will display:
"Text 2"
Frame 331 - 388 will display:
"Text 2"
"Text 3"
Frame 389 - 480 will display:
"Text 3"
Any thoughts??