Search found 26 matches

by TheOtherNewGuy
Tue Nov 22, 2016 7:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Looking for help replacing the textbx gui with image buttons
Replies: 8
Views: 900

Re: Looking for help replacing the textbx gui with image but

Thanks for the reply. Please bear with me, when it comes to coding i'm like a grandparent trying to use a smartphone. so it would look something like this? screen quick_menu(): # Ensure this appears on top of other screens. zorder 100 # Add an in-game quick menu. hbox: style_prefix "quick"...
by TheOtherNewGuy
Tue Nov 22, 2016 5:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Looking for help replacing the textbx gui with image buttons
Replies: 8
Views: 900

Looking for help replacing the textbx gui with image buttons

Looking to replace the textbox gui with buttons with images. I'm currently using renpy 6.99.11, and have been trying to learn the language through the documentation. Trying to understand how all this works together is a bit hard for a newbie, especially since it seems all the examples ive searched f...
by TheOtherNewGuy
Tue Nov 22, 2016 1:24 am
Forum: Ren'Py Cookbook
Topic: [Tutorial] Customizing Menus
Replies: 158
Views: 252668

Re: [Tutorial] Customizing Menus

For the new GUI you all should probably follow the GUI customization guide in the documentation: https://www.renpy.org/doc/html/gui.html welp, problem with that is that I, dunno about everyone else, look for these more detailed and specific tutorials because the documentation goes way over my head :(
by TheOtherNewGuy
Mon Nov 21, 2016 7:41 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make a "character name" bold?
Replies: 10
Views: 3871

Re: How to make a "character name" bold?

Something like define e = Character("Eileen", who_bold=True, who_outlines=[(1, "#000", 1, 1), (1, "#000", 0, 0)]) That will give you black outlines and a black shadow. If you prefer to use style, which will affect all characters names in your game, then you would only ...
by TheOtherNewGuy
Sun Nov 20, 2016 5:05 am
Forum: Ren'Py Cookbook
Topic: Imagebutton GUI Framework [GxImagebuttons]
Replies: 105
Views: 90239

Re: Imagebutton GUI Framework [GxImagebuttons]

crashes for me too.
by TheOtherNewGuy
Sun Nov 20, 2016 12:50 am
Forum: Ren'Py Cookbook
Topic: [Tutorial] Customizing Menus
Replies: 158
Views: 252668

Re: [Tutorial] Customizing Menus

will this still work the same way in renpy 6.99.11? Just noticed person above made a similar comment.
by TheOtherNewGuy
Fri Nov 18, 2016 4:08 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 6.99.11 Released
Replies: 25
Views: 4628

Re: Ren'Py 6.99.11 Released

Thanks for renpy and all that you do. I'm still a nub at all this, but still thanks for all your hard work.
by TheOtherNewGuy
Fri Nov 18, 2016 3:56 am
Forum: Ren'Py Questions and Announcements
Topic: How to make a "character name" bold?
Replies: 10
Views: 3871

Re: How to make a "character name" bold?

For shadows and outlines, you'll want to look here. https://www.renpy.org/doc/html/style_properties.html#style-property-outlines Awesome. K the outline was pretty straight forward... phew. thanks for pointing me in the right direction. If you wanted both an outline and a shadow, how would one write...
by TheOtherNewGuy
Fri Nov 18, 2016 12:48 am
Forum: Ren'Py Questions and Announcements
Topic: How to make a "character name" bold?
Replies: 10
Views: 3871

Re: How to make a "character name" bold?

It's a lot to take in. When it comes to reading the documentation, read through what you're focusing on once, then step back and look over a few scripts. After that, come back after a day or two and read it again. Basically you want to let the information sink in, then look at it again. Doing it th...
by TheOtherNewGuy
Thu Nov 17, 2016 9:49 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make a "character name" bold?
Replies: 10
Views: 3871

Re: How to make a "character name" bold?

@mard thanks for the links. but it's amazing how I don't get a lot of code explanations, pretty much with every language I've tried to get into. I wish everything was more like. If you want to make a character name bold then type this. I'll keep looking this over and hope something clicks. do you ne...
by TheOtherNewGuy
Wed Nov 16, 2016 3:01 am
Forum: Ren'Py Questions and Announcements
Topic: How to make a "character name" bold?
Replies: 10
Views: 3871

How to make a "character name" bold?

Sry if this has been asked many times, i'm in the middle of reading the renpy documentation from start to finish but i figured i ask. I just recently updated renpy from 6.99.4 to 6.99.11. I started a new project and it seems that the names of characters above text is no longer bold. Also i think the...