Search found 66 matches

by Suwamoto
Sat Jun 15, 2013 4:50 am
Forum: Ren'Py Questions and Announcements
Topic: Disabling main menu
Replies: 4
Views: 1708

Re: Disabling main menu

I am not sure if you can disable it completely, but you can do something like

Code: Select all

label splashscreen:
    call start
Which starts the game automatically everytime Renpy starts up oxo And then disable all ways to enter the main menu (like over the preferences menu etc.)
by Suwamoto
Sat Jun 15, 2013 4:13 am
Forum: Ren'Py Questions and Announcements
Topic: How to center character name with two window setup? [Solved]
Replies: 4
Views: 747

Re: How to center character name with two window setup?

Try this instead:

Code: Select all

    style.say_who_window.left_padding = 20
    style.say_who_window.right_padding = 20
    style.say_who_window.xminimum = 1
While the left_padding and right_padding are how much space you want to have on either side.
by Suwamoto
Tue Sep 11, 2012 2:55 am
Forum: Ren'Py Questions and Announcements
Topic: ui.input with imagebutton
Replies: 3
Views: 744

Re: ui.input with imagebutton

Thank you a lot! >///< That was exactly what I was looking for!
by Suwamoto
Mon Sep 10, 2012 1:17 pm
Forum: Ren'Py Questions and Announcements
Topic: ui.input with imagebutton
Replies: 3
Views: 744

ui.input with imagebutton

Hi there xD I was looking for a way to take player's text inputs. And came across this $ ui.input('', xalign=0.5, yalign=0.5) $ your_try = ui.interact() if your_try == '': $ your_try = 'Guy Shy' My question would be, Ren'Py only saves the input value if Enter is pressed. Is there a way to save the v...
by Suwamoto
Sat Sep 08, 2012 3:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy 6.14.0 doesn't start up on Windows Vista
Replies: 2
Views: 707

Re: Renpy 6.14.0 doesn't start up on Windows Vista

My script until now is: # You can place the script of your game in this file. # Declare images below this line, using the image statement. init: #Backgrounds image bg ship = "bgs/Ship.jpg" image bg wood = "bgs/Ship.jpg" image bg woodam = "bgs/Ship.jpg" image bg path = &...
by Suwamoto
Wed Sep 05, 2012 7:50 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy 6.14.0 doesn't start up on Windows Vista
Replies: 2
Views: 707

Renpy 6.14.0 doesn't start up on Windows Vista

Hello, I have started using RenPy a while ago, and sometimes have a problem with the launcher o.o After extracting the SDK, everything works fine. After a few times of use, I can't start the launcher anymore. I will have to delete the whole thing and reinstall it for it to work again >.< Which can g...