Search found 19 matches

by RedReality
Sat Sep 01, 2012 7:46 am
Forum: Ren'Py Questions and Announcements
Topic: button game menu?
Replies: 3
Views: 625

Re: button game menu?

thank you so much :D
it worked perfectly like the way I wanted
do you know how to do an image button on the game screen, like this one except it's an image
by RedReality
Sat Sep 01, 2012 4:11 am
Forum: Ren'Py Questions and Announcements
Topic: button game menu?
Replies: 3
Views: 625

button game menu?

I'm trying to make a button that appears in the game screen that if you clicked it, it will take you elsewhere, e.g. preferences. I want it to take me to an inventory screen or maybe something else. I found this code and it helps a little but I don't know how it can take me to a custom screen or som...
by RedReality
Fri May 25, 2012 5:43 am
Forum: Ren'Py Questions and Announcements
Topic: questions in customizing my pref...
Replies: 2
Views: 581

Re: questions in customizing my pref...

1) Yes, using the audio action SetMixer here . 2) Yes, are you using vbar/hbar? You can set the maximum lengths. 3) Yes, by using styles you can give them a different appearance. 4) Use the Play action from the same place to play music and the Stop action to stop it. Am I doing it right? I'm really...
by RedReality
Thu May 24, 2012 11:17 pm
Forum: Ren'Py Questions and Announcements
Topic: questions in customizing my pref...
Replies: 2
Views: 581

questions in customizing my pref...

Just 4 questions for my imagemap pref :-) 1. Is it possible to mute or pause the bgm or sound by creating an imagemap button? 2. Is it possible to have the slider bars at different sizes? 3. Is it possible to use different slider thumbs? 3. How can I add an imagemap sound test button? thanks in adva...
by RedReality
Thu Apr 26, 2012 10:37 pm
Forum: Ren'Py Questions and Announcements
Topic: The layout hates me
Replies: 5
Views: 1644

Thanks for all your advice :)
I really appreciate it.
by RedReality
Thu Apr 26, 2012 5:57 am
Forum: Ren'Py Questions and Announcements
Topic: The layout hates me
Replies: 5
Views: 1644

The layout hates me

Whenever I try to customize by using "layout.imagemap", it always fails. I can't interact. The hotspots I put doesn't work even though it's correct and sometimes it just shows the normal screens. I follow tutorials but the results are the same. And there's this question I always wanted to ...
by RedReality
Thu Apr 26, 2012 5:37 am
Forum: Ren'Py Questions and Announcements
Topic: Are timed choices possible?
Replies: 2
Views: 563

Re: Are timed choices possible?

Like, putting a time limit on a choice. And if so how would I go about doing that? $ ui.timer(10.0, ui.jumps("menu1_slow")) menu: "Choice 1": hide countdown e "You chose 'Choice 1'" jump menu1_end "Choice 2": hide countdown e "You chose 'Choice 2'" ...
by RedReality
Tue Apr 24, 2012 11:45 am
Forum: Ren'Py Questions and Announcements
Topic: name formats?
Replies: 2
Views: 496

Re: name formats?

init: $ chara = Character("Chara", color="#FFFFFF", who_prefix = "(", who_suffix = ")") You can change the who_suffix and the who_prefix to the way you like it. Thank you very much! :)
by RedReality
Tue Apr 24, 2012 5:20 am
Forum: Ren'Py Questions and Announcements
Topic: name formats?
Replies: 2
Views: 496

name formats?

I was wondering if it is possible to add some characters in the names as a format? Like if the name was Eileen it would be shown as [Eileen]. I'd like to put some brackets for my names.

Thanks in advance~
by RedReality
Mon Apr 23, 2012 7:37 pm
Forum: Ren'Py Questions and Announcements
Topic: bar problem?
Replies: 4
Views: 667

Re: bar problem?

Sorry, the code provided is kinda pseudo-ish and it shouldn't be an Action object but instead a BarValue object. My bad >.< We'll just use Preferences as an example frame: xmaximum 300 label _("Text Speed") bar value Preference("text speed") If you add xmaximum to the parent fra...
by RedReality
Mon Apr 23, 2012 8:28 am
Forum: Ren'Py Questions and Announcements
Topic: bar problem?
Replies: 4
Views: 667

Re: bar problem?

Code Monkey wrote:Add xmaximum (ymaximum if it's a vbar) to any window objects surrounding the bar.

Code: Select all

frame:
    xmaximum 300
    bar value SomeAction():
        other_properties
it doesn't work :(
it says that the frame: is an invalid syntax
by RedReality
Mon Apr 23, 2012 1:02 am
Forum: Ren'Py Questions and Announcements
Topic: bar problem?
Replies: 4
Views: 667

bar problem?

I've been customizing my preferences but the bar length is across the whole screen.
It's just a normal bar and none of my codes fixed the problem. How can I adjust the bar length?
by RedReality
Sat Mar 24, 2012 11:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Image buttons
Replies: 4
Views: 538

Re: Image buttons

DragoonHP wrote:Yes...
You can also you imagemaps for main menu... http://lemmasoft.renai.us/forums/viewto ... =8&t=14237
Thank you very much. I'll try it now.
by RedReality
Sat Mar 24, 2012 3:53 am
Forum: Ren'Py Questions and Announcements
Topic: Image buttons
Replies: 4
Views: 538

Re: Image buttons

Where did you find that code? Anyway, here are the two ways to code an imagebutton http://www.renpy.org/wiki/renpy/doc/reference/functions/ui.imagebutton For screen: http://www.renpy.org/doc/html/screens.html#imagebutton It found here. http://www.renpy.org/wiki/renpy/doc/reference/functions/theme.i...
by RedReality
Sat Mar 24, 2012 2:17 am
Forum: Ren'Py Questions and Announcements
Topic: Image buttons
Replies: 4
Views: 538

Image buttons

I just discovered that there are image buttons. But the code doesn't work? init python hide: buttons = dict() buttons["Start Game"] = ( "theme/Start Game.idle.png", "theme/Start Game.hover.png", "theme/Start Game.selidle.png", "theme/Start Game.selhover.p...