[SOLVED]So, I was wondering, is there any way to change the background of the choice buttons on Ren'Py?
For example in the image below, (No, i'm not trying to plagiarize, I just couldn't find another example.) how can I change the blue background to that of an image (Like the one shown below.)?
Just the background and not the words.
[SOLVED]Also, is there any way for me to add a scroll in the text box as shown below? Like when I have a major load of text that I want to fit in one page but it is not big enough to fit into one text box. (Yes, I know I can just move the text to the next page but out of curiosity.)
I couldn't find any code for this in Ren'Py.
[SOLVED]I couldn't fit this into the title but how do you change the position of the buttons at the bottom right corner or Ren'Py? (Like the Q. Save, Q. Load etc.) I looked into the screens.rpy but the only code that I could find was:
Code: Select all
hbox:
style_group "quick"
xalign 1.0
yalign 1.0
textbutton _("Back") action Rollback()
textbutton _("Save") action ShowMenu('save')
textbutton _("Q.Save") action QuickSave()
textbutton _("Q.Load") action QuickLoad()
textbutton _("Skip") action Skip()
textbutton _("F.Skip") action Skip(fast=True, confirm=True)
textbutton _("Auto") action Preference("auto-forward", "toggle")
textbutton _("Prefs") action ShowMenu('preferences')
init -2:
style quick_button:
is default
background None
xpadding 5
style quick_button_text:
is default
size 12
idle_color "#8888"
hover_color "#ccc"
selected_idle_color "#cc08"
selected_hover_color "#cc0"
insensitive_color "#4448"Thank you in advance for taking your time to read this.
