Search found 2 matches

by Thomas_Blue
Sat Jan 27, 2024 1:26 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make Key Scroll viewport AND do another action?[SOLVED]
Replies: 2
Views: 562

Re: How to make Key Scroll viewport AND do another action?[SOLVED]

Code: Select all

screen myscreen():
    # auto adjust as long as the viewport is scrolled down completely
    python:
        if yadj.value == yadj.range:
            yadj.value = float("inf")
That worked ! thank you!
by Thomas_Blue
Fri Jan 26, 2024 4:14 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make Key Scroll viewport AND do another action?[SOLVED]
Replies: 2
Views: 562

How to make Key Scroll viewport AND do another action?[SOLVED]

I am making a text messaging system for my game and need help making the phone screen viewport show the next text message and scroll down at the same time. here are the code sections # The scrollable text message viewport viewport id "vp": xoffset 80 if persistent.iphone: yoffset 160 else:...