Search found 61 matches

by yoyuchi
Thu Dec 21, 2023 4:54 am
Forum: General Discussion
Topic: Can I open folder where the game is installed with a button action?
Replies: 1
Views: 2082

Can I open folder where the game is installed with a button action?

Good days, everyone. I want to open the folder where game is installed with a button action(click action). I've searched for a solution for hours, but I can't find any information anywhere. Renpy might not have the ability to open a folder with button click. I asking you experts. It would be very he...
by yoyuchi
Thu Feb 16, 2023 1:09 pm
Forum: Ren'Py Questions and Announcements
Topic: I want to make two versions, 32-bit and 64-bit.
Replies: 1
Views: 400

I want to make two versions, 32-bit and 64-bit.

Hello, Everyone. My Renpy version is 7.4.11. When I built the Renpy project with "windows", two executable files were created: "a.exe" and "a-32.exe". I think "a-32.exe" is an executable file for 32-bit. And, I'd like to ask you two questions. 1. If I delete &...
by yoyuchi
Sat Nov 05, 2022 12:15 am
Forum: Ren'Py Questions and Announcements
Topic: Play click sound of "YES" on the confirm menu
Replies: 1
Views: 360

Play click sound of "YES" on the confirm menu

Good day. I added hover sound and click sound to "YES" and "NO" on the confirm menu. If i click "NO", it plays click sound and the confirm menu disappears, but click "YES", it perform action without a click sound. When I click "YES", can take action ...
by yoyuchi
Tue Oct 18, 2022 5:25 am
Forum: Ren'Py Questions and Announcements
Topic: Move the position of playback button on history screen
Replies: 6
Views: 506

Re: Move the position of playback button on history screen

I don't know how to place position of the image button right, left, and upper side based on the name position. I'm too novice. :wink: One last request. Please lead me just one more time. Not to discourage, but I strongly recommend to read Renpy documentation. If it is too much, just read the topics...
by yoyuchi
Mon Oct 17, 2022 11:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Move the position of playback button on history screen
Replies: 6
Views: 506

Re: Move the position of playback button on history screen

I think the button next to the name is too close, so I want to adjust the spacing with the name, is there any command to add? You can use null screen to add spacing hbox: if line[0] and line[0] != " ": label line[0] # name null width 10 if line[2]: # voice button in line with name right a...
by yoyuchi
Mon Oct 17, 2022 12:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Move the position of playback button on history screen
Replies: 6
Views: 506

Re: Move the position of playback button on history screen

vbox: null height 10 for line in lines_to_show: hbox: if line[0] and line[0] != " ": label line[0] # name if line[2]: # voice button in line with name right after name (if there's a name) imagebutton: idle "grp/parts/voice_replay_idle.png" hover "grp/parts/voice_replay_hove...
by yoyuchi
Mon Oct 17, 2022 1:25 am
Forum: Ren'Py Questions and Announcements
Topic: Move the position of playback button on history screen
Replies: 6
Views: 506

Move the position of playback button on history screen

Bye, guys. I made voice playback possible in the text history. An image button for voice playback has been added, but it is located below the voice text line. I want to move this image button right side or left side of the character name. Where should I fix it? h14508.jpg Here's my history script. s...
by yoyuchi
Sun Oct 09, 2022 2:35 am
Forum: Ren'Py Questions and Announcements
Topic: Text History Screen Script with Voice Playback
Replies: 0
Views: 499

Text History Screen Script with Voice Playback

I want to play the voice on the text history screen. The current script I'm using contains a voice playback function, but it doesn't work properly. The same voice is played not only for voice text but also for the next non-voice text. screen text_history: #use navigation tag menu $ _window_hide() ad...
by yoyuchi
Sat Oct 08, 2022 3:18 am
Forum: Ren'Py Questions and Announcements
Topic: I want to turn off the sound when I return to the main menu using the quick menu.
Replies: 1
Views: 486

I want to turn off the sound when I return to the main menu using the quick menu.

Good day. While the long SE sound is playing in the game, if return to the main menu using the quick menu, sound remains and is playing on the main menu. How do I turn off the SE sound when I return to the main menu through the quick menu? imagebutton: idle "grp/parts/Mquit_idle.png" hover...
by yoyuchi
Wed Oct 05, 2022 1:37 am
Forum: Ren'Py Questions and Announcements
Topic: Bar sound in the Settings menu
Replies: 2
Views: 412

Re: Bar sound in the Settings menu

You can't use activate_sound and hover_sound for bars (or for vbox like in your exemple), however you can do something like this: bar: value Preference("music volume") #at bar_transform released Play("sound", "sound/se/se_02.ogg") hovered Play("sound", "...
by yoyuchi
Tue Oct 04, 2022 1:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Bar sound in the Settings menu
Replies: 2
Views: 412

Bar sound in the Settings menu

Good day. Activate and hover sound were added to the image button in the preference menu. And how can I put activate and hover sound into "bar menu" such as volume control and transparency control? activate_sound "sound/se/se_02.ogg" hover_sound "sound/se/se_01.ogg" I t...
by yoyuchi
Tue Oct 04, 2022 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: How to hide or remove text box at the history screen.
Replies: 0
Views: 555

How to hide or remove text box at the history screen.

good day. I want to hide text box at the history screen. A text box remains on the history screen and a history window overlaps it. I read a lot of articles and tried them, but they all failed. I tried "$_window_hide()" on the history screen, and I tried "window hide", but I fail...
by yoyuchi
Mon Oct 03, 2022 10:08 am
Forum: Ren'Py Questions and Announcements
Topic: [Help] When run the built file for PC, appears "windows protected your PC”
Replies: 0
Views: 562

[Help] When run the built file for PC, appears "windows protected your PC”

Hello, Everyone I made a game with Renpy and built it for window. The development environment is Renpi 7.4.1.1-sdk, Windows 7. However, when the build is over and the game executable in the -dist folder is run in Windows 10, the "windows protected your PC” screen appears. Blocked on the Windows...
by yoyuchi
Sun Oct 02, 2022 2:31 pm
Forum: Ren'Py Questions and Announcements
Topic: The difference between the two files "renpy" and "renpy-32"
Replies: 2
Views: 1009

The difference between the two files "renpy" and "renpy-32"

There are two files in the Renpy program: "renpy" and "renpy-32". When I build for Windows, the executable also says, "a."exe" and "a-32.exe". What is the clean difference between these two executables? Does "-32" mean for 32-bit PCs (xp)? When ...
by yoyuchi
Sun Oct 02, 2022 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: ESC, right click cancel sound doesn't work.
Replies: 0
Views: 527

ESC, right click cancel sound doesn't work.

Hello, Everyone. I made a script that returns to the title menu when I right-click and esc on Renpy's preference menu, load, and save menu. I put in cancel sound, but it doesn't work. Here's my script. key "mouseup_3" action [Play("sound", "sound/se/se_03.ogg"), Return(...