if i understood you correct:
you could create a text file with each word or phrase in one line
then use the provided code in the "frame render script" tab of the Text+ tool
- Code: Select all
TableOfLines = {}
i = 0
FramesPerLine = 25 --how many frames should the line be visible
for line in io.lines("e:\\lines.txt") do --change path to file
i = i + 1
TableOfLines[i] = line
end
StyledText = TableOfLines[math.min(table.getn(TableOfLines),math.floor(time/FramesPerLine)+1)] --will hold last line for ever
this will display a line from the file for 25 frames (you can change that with the FramePerLine variable)
this should work pretty fast if your text file isnt too big (because it reads the whole file each frame)