[SOLVED] Textbutton won't display on screen
Posted: Thu Jul 18, 2019 2:08 am
Hello!
Using Ren'Py 7.3.2.
This is a bit tricky, because it's an issue a player has reported, however I haven't been able to recreate it even once.
Apparently the textbutton "Back" doesn't appear on their screen. It appears fine on mine and the few other players screens I've seen.
I have a custom screen with a textbutton that takes you back to a previous screen.
Any ideas what's happening?
Using Ren'Py 7.3.2.
This is a bit tricky, because it's an issue a player has reported, however I haven't been able to recreate it even once.
Apparently the textbutton "Back" doesn't appear on their screen. It appears fine on mine and the few other players screens I've seen.
I have a custom screen with a textbutton that takes you back to a previous screen.
Code: Select all
screen custom():
tag menu
key "K_ESCAPE" action ShowMenu('othercustom')
add "images/image.jpg"
vbox:
xalign 0.9
yalign 0.9
textbutton "Back" action ShowMenu('othercustom')