Search found 22 matches

by Valiowk
Tue Feb 16, 2016 9:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Keep namebox during trans btn dialogues with pause [Solved]
Replies: 4
Views: 615

Re: Keep namebox during transition between dialogues with pa

What, you want a blank who window showing then? *shrug* Well, it's your game. Define a character with a blank name and use {w} then. Really not much of an effort difference between that and pause. Ideally I would like both X's name and dialogue to stay on the screen a little while longer during (at...
by Valiowk
Tue Feb 16, 2016 9:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Keep namebox during trans btn dialogues with pause [Solved]
Replies: 4
Views: 615

Re: Keep namebox during transition between dialogues with pa

philat wrote:Y "{w=1.0}Line of dialogue."

instead of pause 1.0.
That would make Y's name appear even before X had completely dissolved out, which is rather awkward.
by Valiowk
Tue Feb 16, 2016 9:20 pm
Forum: Ren'Py Questions and Announcements
Topic: show at and hide at must be matched?
Replies: 2
Views: 487

Re: show at and hide at must be matched?

philat wrote:Show at a dissolve out transform and hide at a later point. Hide just doesn't play very well with ATL sometimes.
I was afraid that would be the case. Thanks for confirming so that I don't spend ages trying to find a clean solution to a problem that just doesn't have one.
by Valiowk
Tue Feb 16, 2016 9:17 pm
Forum: Ren'Py Questions and Announcements
Topic: AttributeError: 'function' object has no attribute do_extend
Replies: 1
Views: 572

AttributeError: 'function' object has no attribute do_extend

I'm trying to use this custom/bulk character definition script in the Cookbook. Everything works great until I try to show the text box and the menu choices at the same time using the following type of code (the cps in the game is nonzero): e 'This is just a dialogue window.' menu: extend ' ' 'This ...
by Valiowk
Tue Feb 16, 2016 8:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Keeping text shown during transitions
Replies: 33
Views: 13508

Re: Keeping text shown during transitions

Tried out akakyouryuu's latest fixed code in Ren'Py 6.99.8; the project will not launch after the edits to core.py. Any ideas what must be further fixed for it to work in a new version of Ren'Py?
by Valiowk
Tue Feb 16, 2016 12:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Keep namebox during trans btn dialogues with pause [Solved]
Replies: 4
Views: 615

Keep namebox during trans btn dialogues with pause [Solved]

I'm using two_window for my game and have the following ATL code: X "Line of dialogue." show xxx: linear 0.5 alpha 0.0 show yyy: alpha 0.0 xalign 1.0 yalign 1.0 pause 0.5 linear 0.5 alpha 0.5 pause 1 Y "Line of dialogue." I can get the say_window to remain onscreen during "p...
by Valiowk
Tue Feb 16, 2016 12:34 pm
Forum: Ren'Py Questions and Announcements
Topic: show at and hide at must be matched?
Replies: 2
Views: 487

show at and hide at must be matched?

There are a few ATL effects I would like to use to show images. For instance: Show effect 1: show xxx: alpha 0.0 linear 0.5 alpha 0.5 Show effect 2: show xxx: alpha 0.0 pause 0.5 linear 0.5 alpha 0.5 On the other hand, when I hide images, I almost always want to use the same effect: show xxx: linear...
by Valiowk
Mon Feb 15, 2016 8:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebutton hover sound
Replies: 2
Views: 3325

Re: Imagebutton hover sound

style.image_button.hover_sound = "sound/click.wav" (with an underscore between "image" and "button") will work.
by Valiowk
Tue Feb 02, 2016 10:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing/Excluding a Custom Screen during Rollback
Replies: 2
Views: 775

Re: Showing/Excluding a Custom Screen during Rollback

Upping this thread as I have the same question and am wondering if anyone has come up with a solution since then.
by Valiowk
Mon Feb 01, 2016 4:15 am
Forum: Ren'Py Questions and Announcements
Topic: hide at followed by show at not working properly? [Solved]
Replies: 8
Views: 1114

Re: hide at followed by show at not working properly?

Adding left or right after diss does not alter the behavior for me, nor should it. Perhaps you've customized the default left/right transforms in some way that is incompatible with the ATL, but again, I'm guessing. Aha, problem found. You're right - I redefined the positions of left/right, just cha...
by Valiowk
Mon Feb 01, 2016 3:50 am
Forum: Ren'Py Questions and Announcements
Topic: hide at followed by show at not working properly? [Solved]
Replies: 8
Views: 1114

Re: hide at followed by show at not working properly?

Actually, my code frequently looks more like hide xxx at diss, left show yyy at diss, right If the reason why replace/replaced events are being used is because both the hide and show have "at diss", would making separate codes for "at diss, left" and "at diss, right" h...
by Valiowk
Mon Feb 01, 2016 3:28 am
Forum: Ren'Py Questions and Announcements
Topic: hide at followed by show at not working properly? [Solved]
Replies: 8
Views: 1114

Re: hide at followed by show at not working properly?

I meant it sounds like you are doing the following: hide image one at diss show image two at diss which automatically uses replace/replaced events, not hide/show events. If not, there is no reason the ATL should not be working. Please see the reply above - the image tags of xxx and yyy should be di...
by Valiowk
Mon Feb 01, 2016 3:22 am
Forum: Ren'Py Questions and Announcements
Topic: hide at followed by show at not working properly? [Solved]
Replies: 8
Views: 1114

Re: hide at followed by show at not working properly?

I'm guessing, but it sounds like you're replacing images via image tags. http://www.renpy.org/doc/html/displaying_images.html#image Yes, xxx and yyy are image names. If it's useful for you to know, I'm using the built-in define image figure that makes each image name the same as the file name (with...
by Valiowk
Sun Jan 31, 2016 10:04 pm
Forum: Ren'Py Questions and Announcements
Topic: hide at followed by show at not working properly? [Solved]
Replies: 8
Views: 1114

hide at followed by show at not working properly? [Solved]

I'm trying to use the first example from this thread . My goal is to modify the following code so that I can use the ATL commands repeatedly with different characters: show xxx: linear 0.5 alpha 0.0 show yyy: alpha 0.0 pause 0.5 linear 0.5 alpha 0.5 That is, xxx is suppose to dissolve away in 0.5 se...
by Valiowk
Sun Jan 31, 2016 6:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Delete Key Won't Remove Save Files?
Replies: 9
Views: 1247

Re: Delete Key Won't Remove Save Files?

Upping this thread as I thought of the same approach as philat, then discovered like Kshimimi that imagebuttons do not take a key statement. Is there a way to make the save_delete key work with an imagebutton save GUI?