Search found 22 matches

by Valiowk
Sat Jan 09, 2016 4:09 pm
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

Add another line of the same dialogue. See what I did above (minus the showing screen stuff). D'oh! I had forgotten that I had made some cps customizations to achieve my intended effect for the regular menu long ago which I obviously should repeat for this "variant" of the regular menu. T...
by Valiowk
Sat Jan 09, 2016 7:15 am
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

Apologies, one more small question. xela's code provides the requested equivalent of "These are instructions.{nw}" menu: "These are instructions." "This is a choice": "Yep." "This is another choice": "Still yep." Note the {nw} in the first ...
by Valiowk
Tue Jan 05, 2016 11:00 pm
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

I understand that UI functions are depreciated and hence didn't think to research them You were right not to, although that doesn't apply to ui.interact. Noone shows a screens and waits for interact without a complex loop involved, you'll be clumsily mimicking existing functionality, that screen sh...
by Valiowk
Mon Jan 04, 2016 10:34 pm
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

Well, I guess it depends on how much you plan to use the screen. If you're planning to build a choice-heavy game where you're using this screen billions of times, it might make sense to invest the time up front to get your own custom menu screen done right -- that is, in an easily re-usable, effici...
by Valiowk
Mon Jan 04, 2016 2:31 pm
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

Depends on what you want to achieve, but why isn't show screen enough for your purposes? I want to show the text inside the textbox, then have the imagebuttons appear while the text in the textbox remains on the screen. After pressing one of the imagebuttons, both the text in the textbox and imaage...
by Valiowk
Sun Jan 03, 2016 12:58 am
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

Re: How to show text box and imagebutton screen simultaneous

Mikomi wrote:Have you tried the window show statement?

http://www.renpy.org/doc/html/dialogue. ... management
Yes. This keeps the window background there, but not the text within the window also. I would like the text to also remain onscreen while the imagebuttons are shown.
by Valiowk
Sat Jan 02, 2016 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: How to show text box and imagebutton screen simult? [Solved]
Replies: 13
Views: 2666

How to show text box and imagebutton screen simult? [Solved]

What I'd like to achieve is the equivalent of showing the text box and the menu choices at the same time, when I use imagebuttons instead of a regular menu to display choices. That is, I'd like the text instructions to remain on the screen when the imagebutton screen is called. How do I achieve this...