Tappable overlay buttons?!

I have looked everywhere for help on scripting this but all I have found is beta testing forums from 2018… Can someone help me script it here?

Here is the background:

I have a SKIP overlay and a CONTINUE (CONT) overlap I was to put over the bottom words for people to be able to push. They would both lead to a different scene. I don’t want it to say anything after pushing the button, just jump straight into the next scene. Can anyone help me script this??

The code would probably look something like this:

tappable “SKIP” {
@transition fade out
goto end
} “CONT” {
@transition fade out
goto story
}

How does it know where end and story are?

You need to code that in yourself using labels. There’s more information on that here: HOW TO: Labels and Gotos 🖤

That is what I’m asking help here to do is script this whole section.

1 Like

That’s a little bit hard considering the whole section would include your whole episode, but here’s a template for you to fill in:

tappable “SKIP” {
@transition fade out
goto end
} “CONT” {
@transition fade out
goto story
}

label story
(put your whole episode here)

label end
NARRATOR
To be continued

Do I need to put anything after the scene to end the label? Or can I put

label story

label end

If they chose label story, would it continue into label end?

1 Like

Yeah, it will automatically go on to the end label if that’s what comes straight after it

Thank you!!

1 Like

Thank you so so so much!! It all worked! I really appreciate it!

1 Like

You’re welcome. Good luck with your story :blush:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.