Lemma Soft Forums

Supporting creators of visual novels and story-based games since 2003.


Visit our new games list, blog aggregator, IRC, and wiki.
Activation problem? Email [email protected]
It is currently Wed May 22, 2013 10:10 am

All times are UTC - 5 hours [ DST ]


Forum rules


Ask questions about one topic per thread, and use a descriptive subject. "NotImplemented error in script.rpy" is a good subject, "Tom's problems" is not. Remember to include all of traceback.txt or error.txt when reporting a problem, as well as the relevant lines of script. Use the [code] tag to format scripts.



Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: Sun Apr 01, 2012 1:48 pm 
Newbie

Joined: Sat Mar 24, 2012 3:25 am
Posts: 3
Hi,

I'm trying to make the menu choice buttons less wide, but nothing seems to be working (I'm using 6.13.8.1675).

Image

Here is what I have currently in options.rpy (note I colored the bg so I could troubleshoot):

Code:
            style.menu_window.background = Solid("#ff0000")
            style.menu_window.xmaximum = 100 #constrains choice text width but not choice buttons!
            style.menu_choice_button.ypadding = 5
            style.menu_choice_button.ymargin = 5
            style.menu_choice_button.background = Frame("choice_bg.png", 20, 20)
            style.menu_choice.size = 26
            #style.menu_choice.line_spacing = 6


What would be the best way to accomplish this?
Thanks so much!


Top
 Profile Send private message  
 
PostPosted: Sun Apr 01, 2012 2:28 pm 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 939
In "screens.rpy", after "screen choice:"
Code:
init -2 python:
    style.menu_choice_button.xminimum = int(config.screen_width * 0.75)
    style.menu_choice_button.xmaximum = int(config.screen_width * 0.75)

you can change the xminimum and xmaximum of choice buttons


Top
 Profile Send private message  
 
PostPosted: Sun Apr 01, 2012 4:01 pm 
Newbie

Joined: Sat Mar 24, 2012 3:25 am
Posts: 3
ah! thank you - was looking for code love in the wrong places =)


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Protected by Anti-Spam ACP
Powered by phpBB® Forum Software © phpBB Group