Search found 269 matches

by SuperbowserX
Fri Aug 24, 2018 7:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Make text in choice menu button align left/horizontally fill?
Replies: 7
Views: 2179

Make text in choice menu button align left/horizontally fill?

Image

How can I make the text align left so that the text fills up the entirety of the choice button (rather than just occupying the middle portion of it)?
by SuperbowserX
Fri Aug 24, 2018 1:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Could I get some starting pointers/tips on making the choice menu look like this?
Replies: 5
Views: 681

Re: Could I get some starting pointers/tips on making the choice menu look like this?

Are you referring to Choices: Stories You Play? That's a good one even though their business model (diamonds and keys) is very poor. Also, I could use some help. So tinkering with spacing, I was able to get the choices stacked on top of each other. But, problem is, the text in the textboxes is not o...
by SuperbowserX
Fri Aug 24, 2018 12:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Could I get some starting pointers/tips on making the choice menu look like this?
Replies: 5
Views: 681

Re: Could I get some starting pointers/tips on making the choice menu look like this?

Thank you trooper ily :) It is the best game I've played. And rames: I gave a look into screens.rpy and I believe I found the relevant screens (and I think I know which images in gui/button to mess with). It'll take some trial and error but thanks for the pointer. Will post back here if I have a mor...
by SuperbowserX
Fri Aug 24, 2018 10:44 am
Forum: Ren'Py Questions and Announcements
Topic: Could I get some starting pointers/tips on making the choice menu look like this?
Replies: 5
Views: 681

Could I get some starting pointers/tips on making the choice menu look like this?

https://i.imgur.com/pXTn2Sz.png While writing my textbox style, I've already figured out moving the character portrait and the grey circle behind them. I also am quite sure I can figure out how to limit the text width (so that it'll fit onto the image of the choice box). But how would you make a ch...
by SuperbowserX
Fri Aug 24, 2018 7:36 am
Forum: Ren'Py Questions and Announcements
Topic: Show/hide window at same time as other images
Replies: 4
Views: 627

Re: Show/hide window at same time as other images

Never mind. Found an alternate method that worked just fine
by SuperbowserX
Fri Aug 24, 2018 4:32 am
Forum: Ren'Py Questions and Announcements
Topic: Show/hide window at same time as other images
Replies: 4
Views: 627

Re: Show/hide window at same time as other images

..Anyone has any ideas or workarounds? Really would help xD
by SuperbowserX
Thu Aug 23, 2018 6:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Show/hide window at same time as other images
Replies: 4
Views: 627

Re: Show/hide window at same time as other images

Scene statement isn't what I'm looking for because I have other images I want to show.
by SuperbowserX
Thu Aug 23, 2018 6:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Show/hide window at same time as other images
Replies: 4
Views: 627

Show/hide window at same time as other images

It's possible to do concurrent showing/hiding of images with this: show image one show image two with fade hide image one hide image two with fade However, with the textbox, you have to do window show fade or window hide fade to show/hide the textbox. Is there anyway the textbox can be shown/hidden ...
by SuperbowserX
Thu Aug 16, 2018 11:24 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

Re: How to do this?

Thank you so much! I appreciate your help Maydoh.
by SuperbowserX
Thu Aug 16, 2018 11:08 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

Re: How to do this?

Bit of an issue actually. The black screens' borders are light blue (which is the GUI color I chose). Is there a way to fix that or make them just have black borders?
by SuperbowserX
Thu Aug 16, 2018 10:52 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

Re: How to do this?

Thank you so much! This works just as intended. I'll post the code here for my own future reference and anyone who stumbles upon this thread in the future. define e = Character("Eileen") image bg = "bg.jpg" screen borders(): frame xalign 0.0 yfill True xsize 400 ## left border fr...
by SuperbowserX
Thu Aug 16, 2018 10:42 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

Re: How to do this?

That's better but only the left border is showing for some reason.
by SuperbowserX
Thu Aug 16, 2018 10:28 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

Re: How to do this?

Some trouble. define e = Character("Eileen") image bg = "bg.jpg" screen borders(): frame align 0.0 yfill True xsize 200 ## left border frame align 1.0 yfill True xsize 200 ## right border label start: scene bg ## background image show screen borders ## to show the screen while Tr...
by SuperbowserX
Thu Aug 16, 2018 9:57 am
Forum: Ren'Py Questions and Announcements
Topic: How to do this?
Replies: 11
Views: 1267

How to do this?

Suppose I have this image: https://media.istockphoto.com/photos/rainy-night-in-old-european-city-picture-id506854254?k=6&m=506854254&s=612x612&w=0&h=EgeZXcIWotuINlSILnVhmAlOrXy3FYxwJbReRgxpe84= What I desire is something like this, where a certain horizontal portion of the image is v...
by SuperbowserX
Sun Apr 01, 2018 10:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating shifting background when character changes
Replies: 7
Views: 792

Re: Creating shifting background when character changes

Glanced at the documentation's section on it. I imagine at the start of every scene, you would have to define a bunch of characters to be associated with a "left shift" callback (if they're on the left side of the screen), and another bunch to be associated with a "right shift" c...