Search found 3093 matches

by Alex
Sat May 11, 2013 5:59 am
Forum: Ren'Py Questions and Announcements
Topic: Video playback issue
Replies: 6
Views: 734

Re: Video playback issue

Thanks, PyTom, I've sent you a pm.
by Alex
Fri May 10, 2013 8:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Video playback issue
Replies: 6
Views: 734

Re: Video playback issue

Well, yes, I've tried different codecs with similar result, video playing correct in videoplayer, but in Ren'Py game it freezing.
by Alex
Fri May 10, 2013 6:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Video playback issue
Replies: 6
Views: 734

Re: Video playback issue

It's mkv-file (video - VP3 (Theora), audio - Vorbis).
by Alex
Fri May 10, 2013 5:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Video playback issue
Replies: 6
Views: 734

Video playback issue

Hi, folks! Now I'm trying to add a video in to a game and video with space shuttle launching from tutorial game works fine, but none of my files works. The video actually starts, the music plays, but the picture is freezing untill I start moving mouse - then it starts to play. When I stop moving mou...
by Alex
Fri May 03, 2013 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizing Save/Load file slot text. [Solved]
Replies: 2
Views: 505

Re: Customizing Save/Load file slot text.

You can set the save_name variable value, like

Code: Select all

label chapter_1:
    $ save_name = "Day 1. Chapter one."
    code code code
    $ save_name = "Day 2. Chapter one."
http://www.renpy.org/doc/html/save_load ... -variables
by Alex
Fri May 03, 2013 3:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [insoluble] Set zorder to 0 on hover?
Replies: 5
Views: 620

Re: [insoluble] Set zorder to 0 on hover?

The other way, if you re-show the screen it will be placed on top of others, so try to add something to your screens that will re-show them when hovered.
by Alex
Wed May 01, 2013 2:05 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved]Imagebuttons with Alpha?
Replies: 2
Views: 416

Re: Imagebuttons with Alpha?

You need to set focus_mask parameter for your buttons - http://www.renpy.org/doc/html/style.htm ... focus_mask
by Alex
Sun Apr 28, 2013 7:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Flashlight effect?
Replies: 16
Views: 5901

Re: Flashlight effect?

Try to add this line

Code: Select all

window hide
to hide textbox with ctc-indicator and quick menu - later you could show it up again by this line

Code: Select all

window show
by Alex
Sun Apr 28, 2013 4:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py break statements
Replies: 5
Views: 1870

Re: Ren'Py break statements

Not quite understand what you trying to achieve, but while-loop will exist if condition still has value True (like <while smth>), so you can set this "smth" to False to brake the loop. Also, you can have labels inside labels, like label start: code label loop: while smth: code code code if...
by Alex
Sun Apr 28, 2013 2:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py break statements
Replies: 5
Views: 1870

Re: Ren'Py break statements

You can check the condition inside the while-loop and if it met - jump out of the loop

Code: Select all

while smth:
    code code code
    if flag:
        jump out_of_loop
    
label out_of_loop:
    code
by Alex
Sun Apr 28, 2013 6:23 am
Forum: Ren'Py Questions and Announcements
Topic: Question about changing emotions.
Replies: 2
Views: 333

Re: Question about changing emotions.

This should help with ConditionalSwitch - http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=19063 And as for side images, try to name them not <image side a>, but image side chiblink normal = im.Image("chiblinkside.png", xoffset=0, yoffset=-10) image side chiblink happy = im.Image(...
by Alex
Wed Apr 24, 2013 9:35 am
Forum: Ren'Py Questions and Announcements
Topic: Preference Options with Custom GUI.
Replies: 2
Views: 774

Re: Preference Options with Custom GUI.

Try: init -1 python: if not persistent.arrow: persistent.arrow="arr" image transparent: "tarsparent.png" image arrow_point: "arrow1.png" 0.1 "arrow2.png" 0.1 "arrow3.png" 0.1 "arrow2.png" 0.1 repeat define u = Character("(???):", ...
by Alex
Wed Apr 24, 2013 8:41 am
Forum: Ren'Py Questions and Announcements
Topic: Help,Menu status? Or you should said just menu...[solved]
Replies: 8
Views: 1130

Re: Help,Menu status? Or you should said just menu...

Init-block can be placed in any rpy-file you want (screens.rpy, script.rpy, etc.). Also, it's better to put this variables declarations not in init-block, but right at the beginning of start label, like label start: $ bob_points = 0 # this is a variable for bob's affection points throughout your gam...
by Alex
Wed Apr 24, 2013 2:47 am
Forum: Ren'Py Questions and Announcements
Topic: Error: config.__setstate__ is not a known configuration var
Replies: 3
Views: 849

Re: Error: config.__setstate__ is not a known configuration

Mmm... :roll:
I've changed my script a bit and now it looks like the problem is gone, so thank you very much...))