Search found 6 matches

by nevarran
Sat Nov 30, 2019 12:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Copying the ingame text to the clipboard?
Replies: 2
Views: 888

Re: Copying the ingame text to the clipboard?

IrinaLazareva wrote: Sat Oct 05, 2019 4:01 pm somewhere in the script:
...
Thank you, works like a charm. Much appreciated.
by nevarran
Sat Oct 05, 2019 11:17 am
Forum: Ren'Py Questions and Announcements
Topic: Copying the ingame text to the clipboard?
Replies: 2
Views: 888

Copying the ingame text to the clipboard?

Hi, I'm making a small VN, and I had a few people asking me if I can make it so that they can copy the text while playing the game and then paste it in Google Translate or something. Is that possible? Like a adding a button that copies the current text and adds it to the clipboard. I think it will b...
by nevarran
Sun Sep 09, 2018 9:47 am
Forum: Ren'Py Questions and Announcements
Topic: Freeze a movie on the last frame?
Replies: 1
Views: 665

Re: Freeze a movie on the last frame?

Found a way, if someone is interested: screen main_menu(): ## This ensures that any other menu screen is replaced. tag menu style_prefix "main_menu" add gui.main_menu_background add Movie(size=(1920, 1080)) on "show" action Play("movie", "intro.webm") on "...
by nevarran
Sun Sep 09, 2018 5:38 am
Forum: Ren'Py Questions and Announcements
Topic: Freeze a movie on the last frame?
Replies: 1
Views: 665

Freeze a movie on the last frame?

Hi, I want to use a video for the background of the main menu and I made it work using this method: I defined the movie in my scrypt file: image intro = Movie(play="intro.webm") and removed the original background image and placed the video in screens.rpy ##add gui.main_menu_background add...
by nevarran
Wed Jan 03, 2018 7:10 am
Forum: Ren'Py Questions and Announcements
Topic: Adding a switch to the Preferences to change a variable?
Replies: 3
Views: 519

Re: Adding a switch to the Preferences to change a variable?

Thanks, guys. What mitoky suggested seems to be exactly what I'm looking for. I'll try it today.
Much appreciated.
by nevarran
Tue Jan 02, 2018 3:26 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding a switch to the Preferences to change a variable?
Replies: 3
Views: 519

Adding a switch to the Preferences to change a variable?

Hi, guys. Is it possible to add a switch that changes a variable to the Preferences of my game? With 2 or 3 options (just like the "Skip"). I want to offer a choice to the players at the beginning of the game, but I would also like them to be able to change it on the fly as the game progre...