0 votes
by (160 points)
I want the link press on it's own after a few seconds. How can I do this?

1 Answer

+1 vote
by (44.7k points)
selected by
 
Best answer

You could use a <<timed>> macro to trigger code after a certain amount of time has passed.  You could use that to trigger a <<goto>> macro to take you to the next passage.  For example:

<<timed 5s>>
	<<goto "Passage Name">>
<</timed>>

So after five seconds that would take you to the passage named "Passage Name".  See the above links for details.

Hope that helps!  :-)

...