Search found 63 matches

by iDweadith
Thu Jun 18, 2020 4:30 am
Forum: Ren'Py Questions and Announcements
Topic: Is that possible to hide/unhide textbutton?
Replies: 7
Views: 455

Re: Is that possible to hide/unhide textbutton?

Thank you again guys it works perfectly!!!
by iDweadith
Wed Jun 17, 2020 7:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Is that possible to hide/unhide textbutton?
Replies: 7
Views: 455

Re: Is that possible to hide/unhide textbutton?

Another question So I did something like init 1: $ mod_show = False $ mod_button_show = True screen admin_screen: if mod_button_show: if mod_show == False: textbutton "Hello" action SetVariable("mod_show", "True") elif mod_show == True: textbutton "Hello2" act...
by iDweadith
Wed Jun 17, 2020 5:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Is that possible to hide/unhide textbutton?
Replies: 7
Views: 455

Re: Is that possible to hide/unhide textbutton?

It worksss! Thank you rayminator

I never knew I could use conditional statements into a screen
by iDweadith
Wed Jun 17, 2020 2:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Is that possible to hide/unhide textbutton?
Replies: 7
Views: 455

Is that possible to hide/unhide textbutton?

So, I want to hide a single textbutton when I click on it, but I don't know how! If I hide screens I will hide all buttons, while I wanna hide just one button that is the one clicked Something like: when click on the button "open" it dissappear and another texbutton named "close"...
by iDweadith
Wed Jun 17, 2020 10:34 am
Forum: Ren'Py Questions and Announcements
Topic: Textbutton Image?
Replies: 7
Views: 1719

Re: Textbutton Image?

Guys, I really love you

It works perfectely thanks, thanks, thanks
by iDweadith
Wed Jun 17, 2020 8:25 am
Forum: Ren'Py Questions and Announcements
Topic: Textbutton Image?
Replies: 7
Views: 1719

Re: Textbutton Image?

So, in my game I have a side menu made of textbuttons, in the center of the screen there is an image that I want to change when one of the buttons is clicked. Something like if I click on "Happy Button" the centered image will change to "Happy image" I can do it with screens but ...
by iDweadith
Wed Jun 17, 2020 12:03 am
Forum: Ren'Py Questions and Announcements
Topic: Textbutton Image?
Replies: 7
Views: 1719

Re: Textbutton Image?

Thanks trooper6

So, is it the only way?

I mean I'll need too many screens
by iDweadith
Tue Jun 16, 2020 11:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Textbutton Image?
Replies: 7
Views: 1719

Textbutton Image?

Hello guys!

Is it possible to show an image by clicking in a textbutton?
by iDweadith
Tue Jun 09, 2020 1:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Close button
Replies: 3
Views: 335

Close button

Guys I'm sorry my english is not good and that's hard to explain so I try I'm trying to make a single close button for all screens, I mean I want an only single close button to close more screens once a time. Something like: textbutton "Close Screen" action Hide("[Selected_Screen]&quo...
by iDweadith
Thu Jun 04, 2020 4:15 pm
Forum: Ren'Py Questions and Announcements
Topic: renpy.notify
Replies: 2
Views: 299

Re: renpy.notify

Thank you!! Again!!! :) :) :D
by iDweadith
Thu Jun 04, 2020 4:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Disable menu choice?
Replies: 2
Views: 294

Re: Disable menu choice?

Thank you sooooo much! It works perfectly
by iDweadith
Thu Jun 04, 2020 10:19 am
Forum: Ren'Py Questions and Announcements
Topic: Disable menu choice?
Replies: 2
Views: 294

Disable menu choice?

Hello guys,

Is it possible to disable a choice of a menu?
by iDweadith
Thu Jun 04, 2020 8:51 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.notify
Replies: 2
Views: 299

renpy.notify

Hello guys,

Where do I can modify the renpy.notify styles?
by iDweadith
Wed May 27, 2020 3:38 am
Forum: Ren'Py Questions and Announcements
Topic: Game stops when no actions
Replies: 6
Views: 468

Re: Game stops when no actions

Yes! thank you guys :D
by iDweadith
Tue May 26, 2020 8:38 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to get the name of the player in the dialog box?
Replies: 4
Views: 412

Re: How to get the name of the player in the dialog box?

Yes, in script.rpy like this define pov = Character("[povname]") label start: python: povname = renpy.input("What is your name?") povname = povname.strip() if not povname: povname = "Pat Smith" pov "My name is [povname]!"