Search found 4 matches

by guyserman82
Sat Nov 17, 2012 9:32 pm
Forum: Ren'Py Questions and Announcements
Topic: A couple programming questions
Replies: 5
Views: 792

Re: A couple programming questions

Never mind. I did some research and found that if I ass this code: init: $ style.create('my_say_label', 'say_label') $ style.my_say_label.xalign = 0.5 my game will do exactly what I want it to do. So, I need to learn a little more about the say_label (what variables it has), but thanks for your help...
by guyserman82
Sat Nov 17, 2012 9:01 pm
Forum: Ren'Py Questions and Announcements
Topic: A couple programming questions
Replies: 5
Views: 792

Re: A couple programming questions

Well, what you gave me almost works in the way I was thinking, but the text displayed is on the left edge rather than the center, so I tried this: screen chapter_info: window background None: has vbox: style "say_vbox" text chapter_text id "text what" xalign 0.5 and it does exact...
by guyserman82
Fri Nov 16, 2012 11:38 pm
Forum: Ren'Py Questions and Announcements
Topic: A couple programming questions
Replies: 5
Views: 792

Re: A couple programming questions

Hey thanks, Levrex. I'm sure I can work with your code.
One question about it, though. In the second example, how would I use it with, say the centered style, or the subtitle style found in the tutorial game?
by guyserman82
Fri Nov 16, 2012 4:27 pm
Forum: Ren'Py Questions and Announcements
Topic: A couple programming questions
Replies: 5
Views: 792

A couple programming questions

Hi, I'm new to Ren'py, and I've got a game planned, and I'd like to do a couple things. 1. I want to do a slide and a slide out at the same time. I want to simulate the feel of turning a person's head in the first person, and if I were able to slide one scene out while sliding the in the next, it wo...