Basically, I want the user to be able to make a post - “Hello, cats rock and I like burgers” for example.
How would I go about making it so that at first, only “Hello” is shown on their post, then 5 seconds later, “cats” is shown, then 5 seconds later, “rock” is shown, etc.?
Currently I have set up Blockspring to separate their post into separate words (split text by " ")
This comes back as a list, where I count the values to get the wordcount
revealCompleteTime is (wordcount * 5 seconds) + current date/time
Basically, every five seconds from the post date, it should move one more position in that word list. I think there must be some formula to be able to tell at what time each position corresponds to?
I can’t help you, but my ‘first idea’ on that will be using REGEX, conditional and Do Every X seconds. First, one word, and so on. Have no clue if feasible. My 0.5 cent
More I think about it and more complicated is…
You have to extract each word, save to a unique place with a sort field, and than, call each one incremental +1.
Still thinking about it. I’m sure someone else have better solution…