I've searched everywhere but I couldn't manage to find a solution for this problem ;v;
So my problem is that I want to have a custom yes/no prompt screen that looks something like a pop-up box, so the back of it is transparent.
when you click exit, you can still see the background image, which works in most cases
Like so:

but then, whenever I try to exit from a screen like the main menu or the save/load, this is what I get

The image just disappears...
And here's a copy of the code if it helps
Code: Select all
screen yesno_prompt:
modal True
imagemap:
ground "gui/yesno_ground.png"
hover "gui/yesno_hover.png"
idle "gui/yesno_idle.png"
hotspot (224,323,125,41) action yes_action
hotspot (450,323,125,41) action no_action
label _(message):
text_style "yesno_prompt_text"
xalign 0.5
yalign 0.415
init -2 python:
style.yesno_button.size_group = "yesno"
style.yesno_label_text.text_align = 0.5
style.yesno_prompt_text.color = "#FF00BB"
style.yesno_prompt_text.size = 22
