Search found 11 matches

by lordwolfie
Sat Sep 02, 2017 4:17 am
Forum: Ren'Py Questions and Announcements
Topic: How to make Menu choices be up down and left and right?
Replies: 2
Views: 412

Re: How to make Menu choices be up down and left and right?

You can skip using vbox and set position of each choice button manually. Under "screen choice(items)" in "screens.rpy": screen choice(items): style_prefix "choice" default items_count = 0 ## Remove the old code so we can replace with our own. # vbox: # for i in items: ...
by lordwolfie
Sun Aug 27, 2017 10:32 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make Menu choices be up down and left and right?
Replies: 2
Views: 412

How to make Menu choices be up down and left and right?

I have a example of what id like my choice buttons position to be in but I have no idea how to get them that way. So far I only know how to space them out vertically. http://i.imgur.com/jDH7QZl.png
by lordwolfie
Fri May 26, 2017 11:36 am
Forum: Ren'Py Questions and Announcements
Topic: Setting up A specific button for a timed choice?
Replies: 2
Views: 491

Setting up A specific button for a timed choice?

So I have time choices currently and want people to be able to select them via keyboard if they choose. Currently Id have to use the arrow keys then press enter. Is there a method where I could just press arrow key up and it would instantly pick that choice? Or is it possible to do an imagemap and s...
by lordwolfie
Mon Jul 11, 2016 5:15 am
Forum: Ren'Py Questions and Announcements
Topic: ImageButtons on top of a movie?
Replies: 4
Views: 583

Re: ImageButtons on top of a movie?

Still not having to much luck with this situation. Tried to do imagebuttons but did not have much luck. Basically I am attempting to put buttons on top of a movie that is currently playing in a loop.
by lordwolfie
Thu Jul 07, 2016 5:32 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageButtons on top of a movie?
Replies: 4
Views: 583

Re: ImageButtons on top of a movie?

Ok so far I have managed to get it slightly working. Only problem is that the imagebutton does not show till after the movie is finished on the next screen.
by lordwolfie
Thu Jul 07, 2016 11:14 am
Forum: Ren'Py Questions and Announcements
Topic: ImageButtons on top of a movie?
Replies: 4
Views: 583

Re: ImageButtons on top of a movie?

screens usually stay on top of the video, make a screen: screen skips: imagebutton: idle "ui/splash/skip.png" hover "ui/splash/skip.png" focus_mask True action Jump("somewhere") at keys and use show screen to show the button: show screen skips Thank you ill give this a...
by lordwolfie
Wed Jul 06, 2016 6:22 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageButtons on top of a movie?
Replies: 4
Views: 583

ImageButtons on top of a movie?

I have a video looping and want to have buttons overtop of the loop is that possible? I can't use hotspots as far as I know because it does not allow for me to have the movie playing etc. This is the basic script of the scene label begin: stop music play movie "slaps.ogv" loop ? What can I...
by lordwolfie
Tue Jul 05, 2016 9:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Looking to have my start menu buttons slowly appear?
Replies: 1
Views: 336

Looking to have my start menu buttons slowly appear?

So I was looking for a way to possibly make the menu buttons slowly appear. So far the only thing I have managed to do is the dissolve function but it makes the whole menu do it. Was wondering if its possible to just have the buttons slowly appear on screen.
by lordwolfie
Tue Jun 14, 2016 1:20 am
Forum: Ren'Py Cookbook
Topic: [Tutorial] Customizing Menus
Replies: 158
Views: 252532

Re: [Tutorial] Customizing Menus

They are two different sizes. If you don't want the image button to resize every time the mouse hovers over it, you need to make both images the same size, even if there's some empty space around it. Ok thank you ill give it a try. Thank you so much for all the helpful stuff you do here can't say i...
by lordwolfie
Mon Jun 13, 2016 8:14 pm
Forum: Ren'Py Cookbook
Topic: [Tutorial] Customizing Menus
Replies: 158
Views: 252532

Re: [Tutorial] Customizing Menus

Aleema wrote:Post an example of the images you're working with. It may be that they're not the same size.
Ok uploaded my two continue buttons together on imgur this is the link hope its ok http://imgur.com/a/0aWvZ
by lordwolfie
Mon Jun 13, 2016 9:39 am
Forum: Ren'Py Cookbook
Topic: [Tutorial] Customizing Menus
Replies: 158
Views: 252532

Re: [Tutorial] Customizing Menus

Hiya! I am struggling to get my main menu buttons to work properly. Basically I made two images one for when the button is not clicked and one for when I hover over the button. Everything is working properly however when I hover over the button the image that comes in ends up not quite in the same p...