Search found 5 matches
- Mon Aug 26, 2019 1:36 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick-menu remain visible while hovered?
- Replies: 8
- Views: 896
Re: How can I make the quick-menu remain visible while hovered?
I changed the mousearea statement from mousearea: area (0,450, 640, 30) hovered Show("quick_menu", transition=dissolve) unhovered Hide("quick_menu", transition=dissolve) to mousearea: area (0,1000, 1000, 100) hovered SetVariable("quick_menu", True) unhovered SetVariable("quick_menu", False) Which fi...
- Sun Aug 18, 2019 8:46 am
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick-menu remain visible while hovered?
- Replies: 8
- Views: 896
Re: How can I make the quick-menu remain visible while hovered?
This is a really nice addition, though it doesn't stop the quick menu from hiding when 'back' is clicked.
- Sun Aug 18, 2019 6:24 am
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick-menu remain visible while hovered?
- Replies: 8
- Views: 896
How can I make the quick-menu remain visible while hovered?
Hi everyone. I have a quick menu which appears when the mouse hovers over the bottom section of the screen and disappears when the mouse exits this area. The code is as follows: mousearea: area (0,450, 640, 30) hovered Show("quick_menu") unhovered Hide("quick_menu") This works great, however, when a...
- Sun Aug 11, 2019 2:03 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick menu semi-transparent?
- Replies: 3
- Views: 593
Re: How can I make the quick menu semi-transparent?
This is perfect. Exactly what I wanted. Thank you! The only problem I have now is that whenever I click on one of the quick menu buttons (e.g. back) the menu disappears, so the mouse has to go out of the hover area, and re-enter it before the menu shows again. Is there a way to keep the menu there a...
- Sun Aug 04, 2019 4:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick menu semi-transparent?
- Replies: 3
- Views: 593
How can I make the quick menu semi-transparent?
Hi everyone! I really like the quick menu at the bottom of the screen, however it clashes quite heavily with my dialogue box. Is there any way I can reduce the opacity of this menu? Or even, is there a way I can make the quick menu appear only when the mouse is hovering over the bottom of the screen...