Search found 40 matches

by Minuteman
Sat Jun 20, 2020 7:53 am
Forum: Ren'Py Questions and Announcements
Topic: Android Build Fail
Replies: 8
Views: 936

Re: Android Build Fail

Bump :(
Sorry for keeping bumping this, I just can't find any solution.
by Minuteman
Sat Jun 13, 2020 2:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Build Fail
Replies: 8
Views: 936

Re: Android Build Fail

That one-liner of the error message, wouldn't help at all, it could mean many things, mostly in java IDEs, it means index that is more than the length of the array (mostly). So I suggest attaching the full traceback, the text file itself of the log. java.lang.ArrayIndexOutOfBoundsException: 1 at co...
by Minuteman
Wed May 06, 2020 8:58 am
Forum: Ren'Py Questions and Announcements
Topic: Calendar woes -- in need of a simple calendar [SOLVED]
Replies: 44
Views: 12925

Re: Calendar woes -- in need of a simple calendar

Hello, I want to trigger events on a special days with this code (halloween, christmas, new year). But I don't know how to do this. Can someone please help me with this? I haven't studied the code much, but you can pretty much do what you're looking for by doing it like this. label start: if calend...
by Minuteman
Tue May 05, 2020 3:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Calendar woes -- in need of a simple calendar [SOLVED]
Replies: 44
Views: 12925

Re: Calendar woes -- in need of a simple calendar

init python: def date_overlay(): if show_date: ui.image ("".join([calendar.weekday(), ".png"]), xalign=1.0, yalign=0.0) ui.text(calendar.string(), xalign=0.7, size=20) config.overlay_functions.append(date_overlay) class Calendar(object): '''Provides time-related information base...
by Minuteman
Thu Apr 30, 2020 4:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Calendar woes -- in need of a simple calendar [SOLVED]
Replies: 44
Views: 12925

Re: Calendar woes -- in need of a simple calendar

init python: def date_overlay(): if show_date: ui.image ("".join([calendar.weekday(), ".png"]), xalign=1.0, yalign=0.0) ui.text(calendar.string(), xalign=0.7, size=20) config.overlay_functions.append(date_overlay) class Calendar(object): '''Provides time-related information base...
by Minuteman
Fri Apr 17, 2020 3:31 am
Forum: Ren'Py Questions and Announcements
Topic: Android Build Fail
Replies: 8
Views: 936

Re: Android Build Fail

Bump :(
by Minuteman
Sun Apr 12, 2020 11:30 am
Forum: Ren'Py Questions and Announcements
Topic: Android Build Fail
Replies: 8
Views: 936

Re: Android Build Fail

Bump :(
by Minuteman
Sat Apr 11, 2020 4:56 am
Forum: Ren'Py Questions and Announcements
Topic: Android Build problem
Replies: 3
Views: 659

Re: Android Build problem

I have exactly the same problem.
Have you found a solution?
by Minuteman
Sat Apr 11, 2020 4:53 am
Forum: Ren'Py Questions and Announcements
Topic: Android Build Fail
Replies: 8
Views: 936

Android Build Fail

Hello!
While building Android package I have encountered this error : java.lang.ArrayIndexOutOfBoundsException: 1
Anyone know how to fix this?
Thanks in advance!
by Minuteman
Fri Nov 22, 2019 8:50 am
Forum: Ren'Py Questions and Announcements
Topic: Android Presplash Picture
Replies: 2
Views: 417

Re: Android Presplash Picture

Any size, as long as it's not too big and the edge is a single color (the border gets stretched to fill unfilled space, but the image won't be shrunk to fit smaller screens) Generally, I would recommend 480*854 (or 852) so that older smartphones can display all the image and newer (higher resolutio...
by Minuteman
Fri Nov 22, 2019 4:36 am
Forum: Ren'Py Questions and Announcements
Topic: Android Presplash Picture
Replies: 2
Views: 417

Android Presplash Picture

Hello, what the size of android presplash picture must to be to show it correctly?
by Minuteman
Tue Sep 10, 2019 9:56 am
Forum: Ren'Py Questions and Announcements
Topic: How do I customise the scrollbar?
Replies: 5
Views: 3548

Re: How do I customise the scrollbar?

*Bump*
I'm interested in this as well.
by Minuteman
Wed Sep 19, 2018 5:39 am
Forum: Ren'Py Questions and Announcements
Topic: Gallery unlocks screen.
Replies: 4
Views: 799

Re: Gallery unlocks screen.

philat wrote: Tue Sep 18, 2018 7:07 pm Your question is impossibly broad. Yes, it's possible. No one's going to write it for you from scratch.
I was not asking to "write from a scratch"
I just don't know which statement I should use for showing screen there.
by Minuteman
Tue Sep 18, 2018 6:20 am
Forum: Ren'Py Questions and Announcements
Topic: Gallery unlocks screen.
Replies: 4
Views: 799

Re: Gallery unlocks screen.

Bump?.....
by Minuteman
Sun Sep 16, 2018 12:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery unlocks screen.
Replies: 4
Views: 799

Gallery unlocks screen.

Hello, I have a question about gallery screen. I want instead of opening a picture, show a another screen. (Sorry if this sounds dumb....) ( There is little of what I wanted to do ) g.button("01") if persistent.01=="yes": *show screen* So if you unlock and press to this button, y...