Search found 4 matches

by dannymozzer
Wed Dec 18, 2019 3:22 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Placing Dialog in a different screen?
Replies: 5
Views: 613

Re: Placing Dialog in a different screen?

You can pass arguments to a screen so it can be reused many times. Can't test it out now but try modifying your screen like this (the code is untested!): screen text_cut(txt): zorder3 text txt xalign .5 ypos .95 Then you can use the function equivalent of show screen , which is renpy.show_screen() ...
by dannymozzer
Wed Dec 18, 2019 12:46 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Placing Dialog in a different screen?
Replies: 5
Views: 613

Re: Placing Dialog in a different screen?

OK, So this is kind of what I'm after, and this is how I did it: https://i.imgur.com/PRpkmMz.gif Define the text screen text_cut: zorder 3 text "Hello" xalign 0.5 yalign 0.95 screen text_cut2: zorder 3 text "Hello!!" xalign 0.5 yalign 0.95 How I display the text: window hide show...
by dannymozzer
Wed Dec 18, 2019 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Placing Dialog in a different screen?
Replies: 5
Views: 613

Re: Placing Dialog in a different screen?

screen cutscene_diag: modal False add "bargui_raise" add "bargui_lower" text "Example" xalign 0.5 ypos (put a number that can fit below the dialogue) Thank you, but I think I wasn't clear enough, because, I want to constantly change that text, so much like when you cli...
by dannymozzer
Tue Dec 17, 2019 5:52 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Placing Dialog in a different screen?
Replies: 5
Views: 613

[SOLVED] Placing Dialog in a different screen?

Hi, I've started messing around with different stuff in Ren'Py, and I've created a screen which I would like to use for cutscenes, I was wondering, how can I make the dialog appear in the new screen, rather than the standard dialog boxes. As shown on the image posted, you'll see what I'm trying to a...