Search found 3 matches

by vdp
Sat Jun 04, 2011 3:11 am
Forum: Ren'Py Questions and Announcements
Topic: Hide Screen and Unbind Key
Replies: 0
Views: 523

Hide Screen and Unbind Key

I just realized after using timer and key in my screen that even though I try to hide screen using "hide screen" the action still executed! Any help on this? My workaround for now is using boolean to check first... but if there is any other solution, it will be great Example: screen mg_s_t...
by vdp
Tue Apr 05, 2011 11:01 am
Forum: Ren'Py Questions and Announcements
Topic: Code for making a quiz...help anyone???
Replies: 6
Views: 1649

Re: Code for making a quiz...help anyone???

To get input from renpy, use renpy.input $ thing = renpy.input("Let's see. I need to pick...") Reference: http://www.renpy.org/wiki/renpy/doc/reference/functions/renpy.input Or if you want to make your own UI, use ui.input http://www.renpy.org/wiki/renpy/doc/reference/functions/ui.input Or...
by vdp
Wed Mar 30, 2011 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Real Time Clock While Waiting User
Replies: 0
Views: 663

Real Time Clock While Waiting User

I want to make a countdown / timer, but I haven't found any way how to update it in real time (while waiting user typing / clicking / other type of transaction). After asking around renpy channel in IRC and searching through old threads, I found out that I can do it with combination of screen timer ...