Search found 11 matches

by paulyboyx
Mon Jan 22, 2024 10:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Changing Transform with Variable
Replies: 2
Views: 578

Re: Changing Transform with Variable

Thanks so much! I didn't think to show the image again, and now it works like a charm.
by paulyboyx
Mon Jan 22, 2024 9:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Changing Transform with Variable
Replies: 2
Views: 578

Changing Transform with Variable

I've been knocking my head against this problem for a few hours now. I'm trying to change the "on hide" animation depending whether a variable is true or false: default reject = False transform giftGiven: xalign .30 yalign .45 on hide: linear 0.5 xoffset (-200 if reject else 200) alpha 0.0...
by paulyboyx
Sun Nov 26, 2023 5:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Scrollbar won't pair with viewport contents.
Replies: 1
Views: 2947

Scrollbar won't pair with viewport contents.

I've tried for many frustrating hours now to put a scrollbar on a viewport. Yes, I've read through the documentation and googled similar issues, but nothing has worked. My code is below. I have to contain the contents of the viewport (the contents that I want to be scrollable) in boxes. Otherwise, f...
by paulyboyx
Wed Aug 30, 2023 2:13 am
Forum: Ren'Py Questions and Announcements
Topic: Stopping ATL "on hover" from activating again on click?
Replies: 2
Views: 282

Re: Stopping ATL "on hover" from activating again on click?

You have the right idea, but have to be precise about how to write down variables and strings. In the following excerpt you check if a string (!), not a variable is False or True, which is never the case. if "buttonClicked" == False ...I am such a dumbass that I missed that. Thanks very m...
by paulyboyx
Tue Aug 29, 2023 11:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Stopping ATL "on hover" from activating again on click?
Replies: 2
Views: 282

Stopping ATL "on hover" from activating again on click?

I've been wrestling with this problem for an infuriating amount of time. Feels like it should be simple, but apparently not. I have a transform applied to a set of imagebuttons to juice them up. The imagebuttons are used to select a difficulty at the start of the game. The code looks like this: init...
by paulyboyx
Tue Feb 28, 2023 11:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Random Choice and Zorder Issues
Replies: 2
Views: 360

Re: Random Choice and Zorder Issues

Thanks so much for sharing your knowledge!
by paulyboyx
Tue Feb 28, 2023 11:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Random Choice and Zorder Issues
Replies: 2
Views: 360

Random Choice and Zorder Issues

1. I'm coding a name entry screen that'll pick a random name for you if you don't input anything. It works perfectly, EXCEPT: If you reject the name, the label loops and-- in theory-- renpy.random.choice should pick a different one. In practice, it doesn't. It keeps offering you the same name. I hav...
by paulyboyx
Sun Oct 16, 2022 11:29 am
Forum: Completed Games
Topic: Loser's Romance [Comedy] [Romance] [High School]
Replies: 1
Views: 2253

Loser's Romance [Comedy] [Romance] [High School]

https://lh3.googleusercontent.com/Mr5KKY3CihqT0ApWk8hA_e_NPizoiI0eSRan7Q3ogOlpBNGhSAEeyEeTYHBtwM1tquhrhomdnn5D4--a2GZ3fo6ij0VVKBLssB3FZ1d3Y7tsY3ovBBt0KSPpAWGWjJL0UrBscu6QzH7Hp37tJb96EUmTkr3AFsXxh2z5wpaawpsR-ZuNjsJBYnh6ML0kEO45CoKyqtAFgH9CmBykSL7ALw4mWX8_35WHJXBtupyvrwXBjMi1eIfZ36WQ5I2zpDLmLlyYXZAkd...
by paulyboyx
Fri Mar 11, 2022 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: Need a second set of eyes on my code. Trying to make buttons that switch screens.
Replies: 6
Views: 777

Re: Need a second set of eyes on my code. Trying to make buttons that switch screens.

Thanks so much! After studying your example, I finally got my code to work. The main problem was I had my "current page" variable defined when calling the screen. This, it seems didn't just set that to the variable's default as I had assumed it would, but kept the variable from being chang...
by paulyboyx
Thu Mar 10, 2022 12:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Need a second set of eyes on my code. Trying to make buttons that switch screens.
Replies: 6
Views: 777

Re: Need a second set of eyes on my code. Trying to make buttons that switch screens.

Thanks for the replies! I changed "$currentPage = passedPage," but I'm still having the exact same problem: the "Return" button works but doesn't highlight when hovered, whereas the "Next" button highlights but does nothing when clicked. I'm not concerned over how to ma...
by paulyboyx
Thu Mar 10, 2022 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: Need a second set of eyes on my code. Trying to make buttons that switch screens.
Replies: 6
Views: 777

Need a second set of eyes on my code. Trying to make buttons that switch screens.

For my own education in Ren'Py, I'm coding a prototype that's supposed to advance one at a time through pages of images. (Currently, the images are represented by a placeholder called "squarey.png.") Like a gallery, but all the gallery tutorials I've seen use a list of different pages you ...