Search found 4 matches

by PeSS
Sat Feb 25, 2023 10:51 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED - Multiple screens at once?
Replies: 2
Views: 354

Re: Multiple screens at once?

Estger wrote: Sat Feb 25, 2023 1:29 am I tried to do imagebuttons in Zeil's tutorials, but they seemed to just spawn one imagebutton at a time. Is there a way where I can spawn all the imagebuttons together?
Use show instead of call

show screen1
show screen2
show screen3
by PeSS
Fri Feb 24, 2023 12:18 am
Forum: Ren'Py Questions and Announcements
Topic: 'Choice' not defines
Replies: 2
Views: 335

Re: 'Choice' not defines

First you must define "Choice" before you change it. Try it like this: define choice = "blabla" #It doesn't matter what definition you give if you change it in a moment. menu: "Sleep": hide screen countdown $ choice = "Sleep" "You have chosen : Sleep.&quo...
by PeSS
Thu Feb 16, 2023 11:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Delay of variables on the script/screen line
Replies: 1
Views: 244

Re: Delay of variables on the script/screen line

I figured it out adding show then hide my tasklist after action...
And fot the tasks, i just forgot the labels, quick testing...
by PeSS
Thu Feb 16, 2023 6:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Delay of variables on the script/screen line
Replies: 1
Views: 244

Delay of variables on the script/screen line

Hi, I have a problem with the delay of value changes between script and screen. I just started creating a phone in which I have a task list. The icon in the phone is only active during Free Roam and this command works perfectly, I can use the icon immediately after reaching the change to TRUE in my ...