Search found 35 matches

by Lucascraft
Mon Jul 31, 2023 11:23 pm
Forum: I am a Programmer, Director, or Other
Topic: [OPEN for Commission] Programmer for Hire!
Replies: 65
Views: 461075

Re: [OPEN for Commission] Programmer for Hire!

Dragoon just completed a commission for me. Very reliable, good communication, very professional. Was a pleasure to work with. Highly recommend his services and work, and if I ever have another project that needs a bit of serious coding I will definitely contact him again. Thanks Dragoon! You are ex...
by Lucascraft
Mon Jul 31, 2023 12:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Recovering my script from .rpyc file
Replies: 2
Views: 446

Re: Recovering my script from .rpyc file

Nevermind, got lucky and was able to find a random backup in my userdata folder in Windows. Got lucky this time. Lesson learned.
by Lucascraft
Sun Jul 30, 2023 11:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Recovering my script from .rpyc file
Replies: 2
Views: 446

[Solved]Recovering my script from .rpyc file

Hey everyone. I was working on my Visual Novel today using the Atom code editor, which was the provided and recommended code editor for Ren'py. I am very good about saving my work, and my script file that I was working on was saved within the last ~2 minutes. However, I had a storm blow through earl...
by Lucascraft
Mon May 08, 2023 6:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip layering issue
Replies: 3
Views: 335

Re: Tooltip layering issue

This is how I am displaying the tooltip: $ tooltip = GetTooltip() if tooltip: nearrect: focus "tooltip" prefer_top True frame: background None xalign 0.5 text "{b}{color=#8A2BE2}[tooltip]" outlines [(2, "#E6E6FA", 0, 0)] A bit more context, and why this is a bit tricky:...
by Lucascraft
Mon May 08, 2023 6:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip layering issue
Replies: 3
Views: 335

Tooltip layering issue

Hello everyone. I've got an Image button on my screen, and when you hover it, it displays a tooltip. The tooltip itself is working properly. However, my problem is that the text of the tooltip is being covered by another image button on the screen. Meaning the text of the tooltip for one button is b...
by Lucascraft
Sun Mar 26, 2023 12:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Missing steam_api64.dll from Build Distribution
Replies: 3
Views: 498

Re: Missing steam_api64.dll from Build Distribution

So just to make sure I understand... The message that steam_api64.dll is missing is expected, and is only a warning. So that means my real problem is the other thing. The executable is sometimes failing to build, and sometimes it builds and then gets auto-deleted by my computer. Any ideas on a worka...
by Lucascraft
Sat Mar 25, 2023 9:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Missing steam_api64.dll from Build Distribution
Replies: 3
Views: 498

Re: Missing steam_api64.dll from Build Distribution

I don't know what I did, but now I can't even get the Build Distributions to work at all for my project. I keep getting the following error in the exception window: -- Full Traceback ------------------------------------------------------------ Full traceback: File "launcher/game/distribute.rpyc...
by Lucascraft
Sat Mar 25, 2023 6:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Missing steam_api64.dll from Build Distribution
Replies: 3
Views: 498

Missing steam_api64.dll from Build Distribution

Hi everyone! I just attempted to create my very first ever build distribution for my Ren'Py VN. I went through the Build Distributions UI in the Ren'Py launcher, it correctly generated a zip file. Then I took the zip file and extracted it into my games folder. Everything up to this point worked prop...
by Lucascraft
Mon Mar 06, 2023 8:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Re: Tooltip Persistence Bug

Brilliant! Thank you. That one took just a tad more effort to figure out, but I got it. I even got a nice color I'm happy with. You are very helpful. Thank you!
by Lucascraft
Mon Mar 06, 2023 7:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Re: Tooltip Persistence Bug

Oh, actually I just thought of one more question pertaining to tooltips. Sorry for 3 posts in a row. My new question: Is there a way to add an outline to the tooltip text? Depending on the background in my VN, sometimes my tooltip text is a bit difficult to read. If I could put either a white or bla...
by Lucascraft
Mon Mar 06, 2023 7:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Re: Tooltip Persistence Bug

Also, I was able to easily revise my code using the documentation and got it working already. Thank you for the help!

Bug is fixed too!
by Lucascraft
Mon Mar 06, 2023 7:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Re: Tooltip Persistence Bug

Oh! I didn't realize I was using legacy code. I found how to do that online. I will review the documentation you provided and see if I can get it working with the newer method. Thanks! Side note... does modern RenPy have a built-in mouseover tooltip function (meaning the tooltip appears right at the...
by Lucascraft
Mon Mar 06, 2023 7:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Re: Tooltip Persistence Bug

Code: Select all

imagebutton auto "images/buttons/menu_bar_charactersheet_icon_%s.png":
        xalign 0.85 yalign 0.02
        focus_mask True
        hovered tt.Action("{size=-5}{b}{color=#228B2}Character Sheet")
        action ShowMenu ("show_character_sheet")
by Lucascraft
Mon Mar 06, 2023 1:10 am
Forum: Ren'Py Questions and Announcements
Topic: Tooltip Persistence Bug
Replies: 8
Views: 737

Tooltip Persistence Bug

I'm using the built-in tooltip functionality of Ren'Py, and I have a weird (non-critical) bug, where the tooltip is lingering on the screen after I click an in-game button, which opens an in-game window, and when I close the window the tooltip persists. In case the above flow of events is confusing,...
by Lucascraft
Sat Jan 14, 2023 6:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Click anywhere to exit window (custom UI screen)
Replies: 2
Views: 426

Re: Click anywhere to exit window (custom UI screen)

Awesome! Thank you. Quick and simple. Just what I was hoping for.