I need help with my pannable overlays in my script😭

So, I’m trying to let the reader scroll throught diffrent zones and press on the overlay (Which are the characters) but it will only let you press on the first person i wrote on my script. The reader should be able to press on all the overlays but only one of them can let them continue with the story.

Here is my script

Summary

[INT.OFFICE with DESK 2 to 1.000 -1 0 in zone 1 at layer 3 with FILE to 0.355 209 211 in zone 2 at layer 4

@overlay MISSING FILE create
@overlay MISSING FILE opacity 1
@overlay 4869486278934528_MISSING FILE shifts to 117 197 in zone 2
@overlay 4869486278934528_MISSING FILE scales to 0.337 0.337

@zoom on 0 0 to 100% in 0

@cut to zone 2

@EMERALD spot 1.091 147 163 in zone 2 AND EMERALD starts type_sit_neutral_loop AND EMERALD faces left

@transition fade in black 3

    NARR
Press on the files next to the missing person report

tappable
“FILE”{

INT.PS

@overlay JB create
@overlay JB opacity 1
@overlay 4869486278934528_JB shifts to -356 -38 in zone 1
@overlay 4869486278934528_JB scales to 1.000 1.000

@overlay BS create
@overlay BS opacity 1
@overlay 4869486278934528_BS shifts to -236 -27 in zone 1
@overlay 4869486278934528_BS scales to 1.000 1.000

@overlay RS create
@overlay RS opacity 1
@overlay 4869486278934528_RS shifts to 39 -22 in zone 1
@overlay 4869486278934528_RS scales to 1.000 1.000

@overlay PH create
@overlay PH opacity 1
@overlay 4869486278934528_PH shifts to -46 -32 in zone 1
@overlay 4869486278934528_PH scales to 1.000 1.000

@overlay ES create
@overlay ES opacity 1
@overlay 4869486278934528_ES shifts to 177 -23 in zone 1
@overlay 4869486278934528_ES scales to 1.000 1.000

tappable [pan:1:3]
“JB” {

    NARRATOR
Well done

} “BS” {

    NARRATOR
Try Again

}
}

Please help me :pleading_face:

Make sure you put the [pan:1:3] in the very first tappable line.
Also, you do not have to keep putting “tappable” after you’ve done it once.

1 Like

Ohhh, I think I see what you mean know. I read it wrong the first time. From my understanding, you’re having tappable overlays within tappable overlays? Try this. The labels and gotos make it a little cleaner. This is what I’ve done before.

Script

INT.OFFICE with DESK 2 to 1.000 -1 0 in zone 1 at layer 3 with FILE to 0.355 209 211 in zone 2 at layer 4

@overlay MISSING FILE create
@overlay MISSING FILE opacity 1
@overlay 4869486278934528_MISSING FILE shifts to 117 197 in zone 2
@overlay 4869486278934528_MISSING FILE scales to 0.337 0.337

@zoom on 0 0 to 100% in 0

@cut to zone 2

@EMERALD spot 1.091 147 163 in zone 2 AND EMERALD starts type_sit_neutral_loop AND EMERALD faces left

@transition fade in black 3

NARR

Press on the files next to the missing person report

tappable
“FILE”{
goto tappable_files
}
label tappable_files
INT.PS

@overlay JB create
@overlay JB opacity 1
@overlay 4869486278934528_JB shifts to -356 -38 in zone 1
@overlay 4869486278934528_JB scales to 1.000 1.000

@overlay BS create
@overlay BS opacity 1
@overlay 4869486278934528_BS shifts to -236 -27 in zone 1
@overlay 4869486278934528_BS scales to 1.000 1.000

@overlay RS create
@overlay RS opacity 1
@overlay 4869486278934528_RS shifts to 39 -22 in zone 1
@overlay 4869486278934528_RS scales to 1.000 1.000

@overlay PH create
@overlay PH opacity 1
@overlay 4869486278934528_PH shifts to -46 -32 in zone 1
@overlay 4869486278934528_PH scales to 1.000 1.000

@overlay ES create
@overlay ES opacity 1
@overlay 4869486278934528_ES shifts to 177 -23 in zone 1
@overlay 4869486278934528_ES scales to 1.000 1.000

tappable [pan:1:3]
“JB” {
NARRATOR
Well done

} “BS” {

NARRATOR

Try Again
goto tappable_files
}

1 Like

Thank you, i will try this

It still won’t let me tap on the second person which is BS