Search found 6 matches

by BeepBoop
Sun Dec 03, 2023 10:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Lexicon Entries Overriding Each Other
Replies: 4
Views: 8181

Re: Lexicon Entries Overriding Each Other

No offense, but how low IQ do you imagine your players to be if they don't know what a writer is? :lol: I don't think you have a problem here, just remove that entry. You could of course just explain what a "writer" is. I am still a bit laughing. As mentioned in my post I was using them a...
by BeepBoop
Tue Nov 21, 2023 5:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Lexicon Entries Overriding Each Other
Replies: 4
Views: 8181

Re: Lexicon Entries Overriding Each Other

I'm using Renpy 8.

But how do I get it to highlight both Visual Novel AND Visual Novel Writer?
by BeepBoop
Tue Nov 21, 2023 4:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Lexicon Entries Overriding Each Other
Replies: 4
Views: 8181

Lexicon Entries Overriding Each Other

Hi! I'm using the lexicon code from this thread: https://lemmasoft.renai.us/forums/viewtopic.php?p=508523#p508523 and I'm having an issue regarding the names of lexicon terms. Basically, I've made a couple of lexicon entries with similar names, but one is prioritized over the other. Here is the (exa...
by BeepBoop
Wed Jul 26, 2023 4:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Making tooltips disappear when the mouse is not hovering over the word
Replies: 5
Views: 450

Re: Making tooltips disappear when the mouse is not hovering over the word

Alex wrote: Wed Jul 26, 2023 3:43 pm
BeepBoop wrote: Wed Jul 26, 2023 2:16 pm ...It's giving me this error. ...
You did something wrong with your code - all you have to do is just add one line (marked in my post) to the code you've posted in first post.
Fixed it and now it works!

Thank you!
by BeepBoop
Wed Jul 26, 2023 2:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Making tooltips disappear when the mouse is not hovering over the word
Replies: 5
Views: 450

Re: Making tooltips disappear when the mouse is not hovering over the word

Basically, drop the timer from your screen and instead hide screen when hyperlink hovered function receives None as an argument. https://www.renpy.org/doc/html/style_properties.html#style-property-hyperlink_functions Is that not already coded here? (New to Python) def hyperlink_hovered(*args): if n...
by BeepBoop
Wed Jul 26, 2023 1:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Making tooltips disappear when the mouse is not hovering over the word
Replies: 5
Views: 450

Making tooltips disappear when the mouse is not hovering over the word

Hi! I'm trying to make some text tooltips for my game where the player hovers their mouse over a highlighted word and they get a little tooltip that explains the lore. I did manage to find a code on these forums that had what I was looking for, except there's one problem: the tooltip doesn't stay up...