Search found 18 matches

by Ormgair
Thu Jan 01, 2015 11:42 am
Forum: Ren'Py Questions and Announcements
Topic: Save/Load screen using imagemap [SOLVED]
Replies: 2
Views: 954

Save/Load screen using imagemap [SOLVED]

Hi there! I am almost made Save/Load menu with imagemap,but there is one trouble i have. Screenshots in save cells are very-very small (~70x50),but i need 200x150 screenshot. How can i do this? screen save: tag menu imagemap: ground "Images/cabin.jpg" hover "Images/cabin1.jpg" ca...
by Ormgair
Sat Dec 27, 2014 12:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Transparent information bar [SOLVED]
Replies: 2
Views: 686

Re: Transparent information bar

Look at the different possibilities in Screen Language: http://renpy.org/doc/html/screens.html (fixed, vbox, hbox, frame). Your code uses "frame", that has the "background" property. You can use "background None" to have an empty background. But you could use "vbo...
by Ormgair
Sat Dec 27, 2014 9:54 am
Forum: Ren'Py Questions and Announcements
Topic: Transparent information bar [SOLVED]
Replies: 2
Views: 686

Transparent information bar [SOLVED]

Hello! i have made an information bar in my novel,like this:
Image
I use this code in screens.rpy:

Code: Select all

screen aff_screen:
    frame:
       has vbox
       text "..."
         
How can i made this information bar transparent,not blue?