Page 1 of 1

Textbox issue.

Posted: Thu Jul 07, 2016 12:50 pm
by ash.earl
Hello! I am currently making a visual novel right now, but I have an issue with the textbox. Every time a character changes expressions, the textbox disappears and then reappears. I don't know how to fix this, so if someone would help me, that would be great. Here is the code that I have now:

Code: Select all

label start:
    scene disclaimer bg
    with dissolve
    show nobuyuki happy at center
    with dissolve
    
    n "Hello, friends!"
    
    show nobuyuki normal at center
    with dissolve
    
    n "My name's Nobuyuki, and I'm going to be one of the characters in this game."
    n "Are you wondering why I'm here?"
    n "I guess I'll tell you: to throw out a disclaimer, credits, yeah... Whatever you want to call it."
    
    show nobuyuki concerned at center
    with dissolve
    
    n "Uh, let's see..."
Every time I launch the project, when Nobuyuki changes his expression, the textbox disappears, it changes Nobuyuki's expression, and then the textbox reappears. I just want the textbox to be there the whole entire time throughout the game without all the disappearing and reappearing. Is there any way to fix this?

Thanks,
ash.earl

Re: Textbox issue.

Posted: Thu Jul 07, 2016 1:08 pm
by Donmai
It's normal that the window disappears during transitions. Try putting the line

Code: Select all

window show
as the first line in your label start. Of course, any time you want the dialogue to disappear, you may use

Code: Select all

window hide