I have some problems with the save menu

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Post Reply
Message
Author
celes91
Newbie
Posts: 22
Joined: Sun Jul 14, 2013 2:24 pm
Completed: Affection, Yuri Affection
Projects: Pure Affection
Tumblr: celeschere91
Deviantart: celes91
Location: Pastaland (Italy)
Contact:

I have some problems with the save menu

#1 Post by celes91 » Fri Jul 15, 2016 5:03 pm

I changed the size of the text (of dialogues) but menu text is too big. And the save boxes are too big, I can't click on "preferences", or "save" cause it's "covered" by these boxes. What can I do?

(sorry for my english!) :(
Attachments
save menu.PNG
save menu

User avatar
chocoberrie
Veteran
Posts: 254
Joined: Wed Jun 19, 2013 10:34 pm
Projects: Marshmallow Days
Contact:

Re: I have some problems with the save menu

#2 Post by chocoberrie » Fri Jul 15, 2016 5:29 pm

If you want to make a custom save menu with your own images and your own font, I highly recommend making an imagemap! I wrote a thorough tutorial series for making imagemaps for all of the game menus in Ren'Py (main menu, preferences menu, save/load menu, etc.). You can find it here! :)

In my opinion, using imagemap coding is much easier than trying to change the default coding. Imagemaps allow you to completely customize the menu, so you get exactly the look you want. Give it a try! :)

celes91
Newbie
Posts: 22
Joined: Sun Jul 14, 2013 2:24 pm
Completed: Affection, Yuri Affection
Projects: Pure Affection
Tumblr: celeschere91
Deviantart: celes91
Location: Pastaland (Italy)
Contact:

Re: I have some problems with the save menu

#3 Post by celes91 » Mon Jul 18, 2016 11:47 am

I'm sorry but it seems pretty hard to do! I like the menu style, I just want to adjust save boxes size!
(I'm a beginner with this program and don't know much about codes!)

User avatar
IrinaLazareva
Veteran
Posts: 399
Joined: Wed Jun 08, 2016 1:49 pm
Projects: Legacy
Organization: SunShI
Location: St.Petersburg, Russia
Contact:

Re: I have some problems with the save menu

#4 Post by IrinaLazareva » Mon Jul 18, 2016 12:25 pm

in file screen.rpy find screen navigation():

Code: Select all

        textbutton _("Return") action Return()
        textbutton _("Preferences") action ShowMenu("preferences")
        textbutton _("Save Game") action ShowMenu("save")
        textbutton _("Load Game") action ShowMenu("load")
        textbutton _("Main Menu") action MainMenu()
        textbutton _("Help") action Help()
        textbutton _("Quit") action Quit()
and try to change:

Code: Select all

        textbutton _("Return") text_size (10) action Return()
        textbutton _("Preferences") text_size (10) action ShowMenu("preferences")
        textbutton _("Save Game") text_size (10) action ShowMenu("save")
        textbutton _("Load Game") text_size (10) action ShowMenu("load")
        textbutton _("Main Menu") text_size (10) action MainMenu()
        textbutton _("Help") text_size (10) action Help()
        textbutton _("Quit") text_size (10) action Quit()
(where instead of 10 it is possible to set any size)

OR (!)

in screen file_picker():
replace:

Code: Select all

        $ rows = 5
to

Code: Select all

        $ rows = 2

celes91
Newbie
Posts: 22
Joined: Sun Jul 14, 2013 2:24 pm
Completed: Affection, Yuri Affection
Projects: Pure Affection
Tumblr: celeschere91
Deviantart: celes91
Location: Pastaland (Italy)
Contact:

Re: I have some problems with the save menu

#5 Post by celes91 » Mon Jul 18, 2016 2:46 pm

ok, thanks!

Post Reply

Who is online

Users browsing this forum: No registered users