How do I add a second page to the stat chart?

Hi all! Been lerking around and trying to solve this problem. I have not been able to find the answer yet. I need three tabs for my stats screen - if anyone can point me in the right direction or has an example of how this is a accomplished I’d be very greatful.

  1. Main character sheet

  2. Relationships

  3. Skill explainations.

So far I’ve not been able to add a second page yet and could use some help.

It should be something like:

*label main
[Main stats here]
*choice
    #Relationships
        *goto rel
    #Skill Explanations
        *goto skill
*label rel
[Relationship stats here]
*choice
    #Main Chatacter Sheet
        *goto main
    #Skill Explanations
        *goto skill
*label skill
[Skills here]
*choice
    #Main Chatacter Sheet
        *goto main
    #Relationships
        *goto rel
1 Like

So the extra stat screens are simply stand alone labels within the startup file that you connect to the stat screen using a choice and goto option? I think I got it.