Page 1 of 1
I have some problems with the save menu
Posted: Fri Jul 15, 2016 5:03 pm
by celes91
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!)

Re: I have some problems with the save menu
Posted: Fri Jul 15, 2016 5:29 pm
by chocoberrie
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!

Re: I have some problems with the save menu
Posted: Mon Jul 18, 2016 11:47 am
by celes91
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!)
Re: I have some problems with the save menu
Posted: Mon Jul 18, 2016 12:25 pm
by IrinaLazareva
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:
to
Re: I have some problems with the save menu
Posted: Mon Jul 18, 2016 2:46 pm
by celes91
ok, thanks!