Search found 110 matches

by Eliont
Tue May 26, 2015 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: Pause video
Replies: 0
Views: 1356

Pause video

Hello and good time of day.

Is there any way to pause video playback?
I need School Days-like behavior.

Big Thanks in advance.
by Eliont
Mon Dec 29, 2014 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: How tomake APK ?
Replies: 4
Views: 557

Re: How tomake APK ?

Thanks, i found APK, but is 6MB file, and my game has 200 mb data folder...
Rebuilding does't solve problem.
Something went wrong or i don't understand.
by Eliont
Sun Dec 28, 2014 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: How tomake APK ?
Replies: 4
Views: 557

How tomake APK ?

Hello and good time of day.

I install java, builder process game project and i get a bunch of files and folders.
But how make apk for android tablets (even without GP support)?

Thanks in advance.
by Eliont
Mon Oct 06, 2014 12:25 am
Forum: Ren'Py Questions and Announcements
Topic: ATL images in screens
Replies: 4
Views: 528

Re: ATL images in screens

Ok, thanks.
by Eliont
Mon Oct 06, 2014 12:03 am
Forum: Ren'Py Questions and Announcements
Topic: ATL images in screens
Replies: 4
Views: 528

Re: ATL images in screens

Last, i think.

Image
by Eliont
Sun Oct 05, 2014 11:55 pm
Forum: Ren'Py Questions and Announcements
Topic: ATL images in screens
Replies: 4
Views: 528

ATL images in screens

Hello and good time of day. Without repeat in the end of atl block animation don't work - instantly displayng last frame. image ef gain_initiative: size (150, 150) "content/dungeon/effects/gain_init/frame1.png" pause 0.1 <...> "content/dungeon/effects/gain_init/frame14.png" pause 0.1 repeat if field...
by Eliont
Sun Oct 05, 2014 11:06 pm
Forum: Ren'Py Questions and Announcements
Topic: [BUG] 'continue' not properly in loop
Replies: 2
Views: 331

Re: [BUG] 'continue' not properly in loop

Йопт, i must rewrite a big part of code.

But anyway, thanks for answer.
by Eliont
Sun Oct 05, 2014 9:50 pm
Forum: Ren'Py Questions and Announcements
Topic: [BUG] 'continue' not properly in loop
Replies: 2
Views: 331

[BUG] 'continue' not properly in loop

Hello and good time of day

After last update renpy begins invoke errors on fragments like

Code: Select all

                    for entry in base.room.functions:
                        if entry in lists.action_anywhere: 
                            $continue

what previously working normally.
by Eliont
Sat Apr 19, 2014 4:11 am
Forum: Ren'Py Questions and Announcements
Topic: Set 'dissolve' transition as default transition
Replies: 3
Views: 3213

Re: Set 'dissolve' transition as default transition

Thanks, it works. def replacement_show(*args, **kwargs): renpy.transition(Dissolve(1)) renpy.show(*args, **kwargs) renpy.pause(1.5, hard=True) return config.show = replacement_show def replacement_hide(*args, **kwargs): renpy.transition(Dissolve(1)) renpy.hide(*args, **kwargs) renpy.pause(1.5, hard=...
by Eliont
Sat Apr 19, 2014 12:27 am
Forum: Ren'Py Questions and Announcements
Topic: Set 'dissolve' transition as default transition
Replies: 3
Views: 3213

Set 'dissolve' transition as default transition

Hello and good time of day. show event1 at truecenter with dissolve <-- is there any way don't write 'with dissolve' in each statement? If i want instant, i will wriite 'with None'. May by it possible with http://www.renpy.org/doc/html/config.html#var-config.with_callback but i can't figure out how....
by Eliont
Fri Aug 09, 2013 4:04 am
Forum: Ren'Py Questions and Announcements
Topic: "window hide dissolve" has no "dissolve" effect
Replies: 2
Views: 590

Re: "window hide dissolve" has no "dissolve" effect

Emmm, sorry, what you mean? Appear / disappear with dissolve. "text 1." nvl hide dissolve nvl clear show bg hospitalnormal with Fade(2.0,0,2.0,color='#000') nvl show dissolve "text 2" It seems "window" refers to nvl window too because it blinks on screen when this string was executed. How to make it...
by Eliont
Wed Aug 07, 2013 5:27 am
Forum: Ren'Py Questions and Announcements
Topic: "window hide dissolve" has no "dissolve" effect
Replies: 2
Views: 590

"window hide dissolve" has no "dissolve" effect

Hello and good time of day.

nvl hide dissolve works perfectly, but when i try window hide dissolve - there no dissolve effect occur, ADV window disapper instantly. Is there a bug, or i doing something wrong?

Thanks in advance.
by Eliont
Sat Aug 03, 2013 3:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Shorter way to hide textbox during transition
Replies: 2
Views: 781

Shorter way to hide textbox during transition

Hello and good time of day.

Code: Select all

        
nvl hide dissolve
show bg farewell with Dissolve(1)
nvl show dissolve
Is there any way to do it shorter - hiding nvl/adv texboxes with dissolve during show/hide images.

Thanks in advance.
by Eliont
Tue Apr 23, 2013 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: Accessing Win7 clipboard
Replies: 1
Views: 447

Accessing Win7 clipboard

Hello and good time of day.

It possible to access the Windows clipboard in Renpy to get the text string?