Search found 22 matches

by kafkaontheshore
Tue Apr 27, 2021 9:21 am
Forum: Ren'Py Questions and Announcements
Topic: I thought adding the same tag to screens made them disappear when I show another one? [Solved]
Replies: 3
Views: 965

I thought adding the same tag to screens made them disappear when I show another one? [Solved]

I have a screen for a map and when I show it, I want the hotspots of other screens to disappear. I cannot call the map when the player clicks on the map icon because I called a character already (because you are supposed to either talk to him or leave the place over the map). Also the screen of the ...
by kafkaontheshore
Sat Apr 24, 2021 7:35 am
Forum: Ren'Py Questions and Announcements
Topic: Is it possible to put variables into Notify()? [Solved]
Replies: 2
Views: 283

Re: Is it possible to put variables into Notify()?

Ocelot wrote: Sat Apr 24, 2021 7:16 am Why not just Notify(village)?
Well, I just assumed that it works the way when you use variables while talking...
Thx :p
by kafkaontheshore
Sat Apr 24, 2021 7:01 am
Forum: Ren'Py Questions and Announcements
Topic: Is it possible to put variables into Notify()? [Solved]
Replies: 2
Views: 283

Is it possible to put variables into Notify()? [Solved]

I defined a variable: $ village = "There seems to be a small village" I also made an imagemap with one hotspot being the following: hotspot (1316,175,1448,249) hovered Notify("[village]") action Jump("choice1_village") When I now hover over the village it shows me [vill...
by kafkaontheshore
Sat Apr 24, 2021 6:21 am
Forum: Ren'Py Questions and Announcements
Topic: How to remove the blue border from the imagebutton? [Solved]
Replies: 2
Views: 337

Re: How to remove the blue border from the imagebutton?

The borders are coming from your frame. Look for the style for the frame and set the border to 0. (shift i while hovering over the image will help you find which style and where is applying the border) Hello there! I tried to do what you told me... In the end I did this: frame: xalign 0.25 yalign 0...
by kafkaontheshore
Sat Apr 24, 2021 6:11 am
Forum: Ren'Py Questions and Announcements
Topic: How to change the time the Notify() screen takes to dissolve? [Solved]
Replies: 2
Views: 349

Re: How to change the time Notify() takes to dissolve?

If you are talking about screen that appears after using renpy.notify or Notify screen action. you need to navigate into screens.rpy file, find screen notify and change line timer 3.25 action Hide('notify') to whatever time you want. Thank you Ocelot for your help! That was what I meant :)
by kafkaontheshore
Thu Apr 22, 2021 11:10 am
Forum: Ren'Py Questions and Announcements
Topic: How to remove the blue border from the imagebutton? [Solved]
Replies: 2
Views: 337

How to remove the blue border from the imagebutton? [Solved]

Here is my code: screen fish_button(): frame: xalign 0.75 yalign 0.0 imagebutton: idle "fish happy" hover "fish happy" hovered Notify("The fish is looking at you expectantly") action Jump('fish') call screen fish_button() When I just show the picture it does not have bo...
by kafkaontheshore
Thu Apr 22, 2021 9:29 am
Forum: Ren'Py Questions and Announcements
Topic: How to change the time the Notify() screen takes to dissolve? [Solved]
Replies: 2
Views: 349

How to change the time the Notify() screen takes to dissolve? [Solved]

Hello there, I want to a create clickable image, which also shows a notify if one hovers over it. This worked but after removing the cursor the notify stays for two seconds. I want it to dissolve after one or half a second. How can I change that? It is my first question. I hope it is as it should be...