Search found 23 matches

by Newnewbie
Sat Jan 11, 2020 1:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Change color of name/label in History window
Replies: 2
Views: 337

[SOLVED] Change color of name/label in History window

Hello,

I'm looking for a way to change the color of the names in my History window, independently from my default name color. Do you guys know a way to do it please?
by Newnewbie
Thu Jan 09, 2020 10:03 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Personnalise dialog window and specific "dialogue_width"
Replies: 2
Views: 370

[SOLVED] Personnalise dialog window and specific "dialogue_width"

Hello, I'm using this code to personnalize my specific dialog window: define z = Character(None, color="000", window_background="gui/textbox2.png", what_xpos = 65, dialogue_width = 700) But my parameter "dialogue_width" doesn't seem to work for any reason or since my de...
by Newnewbie
Thu Jan 09, 2020 8:39 am
Forum: Ren'Py Questions and Announcements
Topic: Voice too short
Replies: 4
Views: 385

Re: Voice too short

My issue is than I'm already using a music and a looped sound in the background T_T
by Newnewbie
Thu Jan 09, 2020 8:11 am
Forum: Ren'Py Questions and Announcements
Topic: Voice too short
Replies: 4
Views: 385

Re: Voice too short

Well, thank you!

Do you know how could I loop the voice then?
by Newnewbie
Thu Jan 09, 2020 6:21 am
Forum: Ren'Py Questions and Announcements
Topic: Voice too short
Replies: 4
Views: 385

Voice too short

Hello, I'm trying to play a 8 seconds voice, but I only hear the very beggining of it (like 1 second around). Also,the loop does not work (on the voice only)... Do you guys know why? Here's my code: define terry_singing = "audio/Voice/Terry/Terry_Singing.mp3" play voice terry_singing loop ...
by Newnewbie
Sat Dec 14, 2019 1:07 pm
Forum: Ren'Py Questions and Announcements
Topic: 2 different dialogue windows
Replies: 4
Views: 709

Re: 2 different dialogue windows

Ok. I did well the different style of windows. Thanks! But I still have an issue with: define gui.dialogue_xpos = 80 define gui.dialogue_ypos = 20 define gui.dialogue_width = 560 Which is the parameters (from gui) of my first window style who is applied to my second window style too :/ How can I dup...
by Newnewbie
Sat Dec 14, 2019 8:57 am
Forum: Ren'Py Questions and Announcements
Topic: 2 different dialogue windows
Replies: 4
Views: 709

Re: 2 different dialogue windows

Thank you!
by Newnewbie
Fri Dec 13, 2019 2:38 pm
Forum: Ren'Py Questions and Announcements
Topic: 2 different dialogue windows
Replies: 4
Views: 709

2 different dialogue windows

Hello guys! I have a question: Can we have 2 different dialogue windows, with different parameters ? Like in this example: https://image.noelshack.com/minis/2019/50/5/1576262072-description.png I would like to have a different window for dialogue and a different window for descriptions. Thank you :]
by Newnewbie
Wed Dec 11, 2019 4:19 am
Forum: Ren'Py Questions and Announcements
Topic: Shorter blink code ?
Replies: 4
Views: 571

Re: Shorter blink code ?

Thank you guys :o I'm going to try both!
by Newnewbie
Tue Dec 10, 2019 1:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Shorter blink code ?
Replies: 4
Views: 571

Shorter blink code ?

Hi guys! I have a got a newb question (again). I display blink on my characters face. And those are always in the same position. So I declared (example) : image blinks: "images/blinks0000.png" pause 0.8 "images/blinks0001.png" pause 0.8 repeat But my question is, should I always ...
by Newnewbie
Sun Dec 08, 2019 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Display text with specific position and style
Replies: 11
Views: 947

Re: Display text with specific position and style

Thank so much for your help guys T_T
by Newnewbie
Sun Dec 08, 2019 10:03 am
Forum: Ren'Py Questions and Announcements
Topic: Display text with specific position and style
Replies: 11
Views: 947

Re: Display text with specific position and style

define e = Character('Eileen', color="#c8ffc8") screen text_example(): frame: xalign 0.5 ypos 50 text "Text tags {color=#c8ffc8}work{/color} in screens.": size 30 # Le jeu commence ici label start: show screen text_example e "This is a test" return Ok, I'm stucked agai...
by Newnewbie
Sun Dec 08, 2019 9:04 am
Forum: Ren'Py Questions and Announcements
Topic: Display text with specific position and style
Replies: 11
Views: 947

Re: Display text with specific position and style

Thank you very much... You helped me a lot