any way to make make this only appear when you hover

qwerty132

Newbie
Aug 3, 2017
44
5
any way to make this black bar only visible when you hover over over it i want to use self voicing but it keeps repeating every thing on the bar

the game is THE WISH

THANKS

EDIT-- I EDITED THE SCRIPT AND CHANGED SOME OF THE VALUES TO ? BUT TURNS OUT I NEED TO KNOW THE INFO WHICH IS WHY IM MAKING THIS POST
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,041
3,140
first post your code and what engine that you are using if you are using renpy then use Mousearea


Code:
screen button_overlay():
    mousearea:
        area (0, 0, 1.0, 100)
        hovered Show("buttons", transition=dissolve)
        unhovered Hide("buttons", transition=dissolve)

screen buttons():
    hbox:
        textbutton "Save" action ShowMenu("save")
        textbutton "Prefs" action ShowMenu("preferences")
        textbutton "Skip" action Skip()
        textbutton "Auto" action Preference("auto-forward", "toggle")

label start:
    show screen button_overlay