Search found 82 matches

by stwkun
Wed Aug 06, 2014 12:49 am
Forum: Ren'Py Questions and Announcements
Topic: Changing Appearance of DSE Day Planner Window
Replies: 4
Views: 626

Re: Changing Appearance of DSE Day Planner Window

Go to styles.rpy and change some values. For example style.stat_label_text.size = 32 #try in this to change the text size Here to move te actions days # Place the day planner. style.dp_frame.ypos = 230 #change this style.dp_frame.yanchor = 0.0 style.dp_frame.xalign = 0.5 #and this I hope I could hel...
by stwkun
Wed Aug 06, 2014 12:33 am
Forum: Ren'Py Questions and Announcements
Topic: Sound effect for custom buttons [SOLVED]
Replies: 5
Views: 1219

Re: Sound effect for custom buttons

Have you tried to put this in options.rpy

Code: Select all

    style.button.activate_sound = "sound/beep3.wav"
    style.imagemap.activate_sound = "sound/beep4.wav" 

    config.enter_sound = "sound/switch2.wav"
    config.exit_sound = "sound/lp10.mp3"
by stwkun
Wed Aug 06, 2014 12:21 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]how to set language choice before of presplash?
Replies: 2
Views: 515

[solved]how to set language choice before of presplash?

how to set language choice before of splash screen? I want to make in the game appears two options to choose in what language you want to play I have to text button with different languages , but I don't figured out how to put into the label splash screen label splashscreen: scene black with Pause(....
by stwkun
Fri Aug 01, 2014 6:33 pm
Forum: Ren'Py Questions and Announcements
Topic: It's possible go to Events depends of internal hour?
Replies: 2
Views: 400

Re: It's possible go to Events depends of internal hour?

Kind of hard to understand ... I think we can use this topic to get the time and make the conditions

http://lemmasoft.renai.us/forums/viewto ... 51&t=21978
by stwkun
Fri Aug 01, 2014 1:07 pm
Forum: Ren'Py Questions and Announcements
Topic: It's possible go to Events depends of internal hour?
Replies: 2
Views: 400

It's possible go to Events depends of internal hour?

It's possible go to Events depends of internal hour (pc´s hour)?

For example if the hour is 8.00 to 12.00
jump event school

if the hour is 12.01 to 3.00
jump event lunch ....
by stwkun
Thu Jul 31, 2014 12:47 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] trying to put millisecond at timed menus
Replies: 2
Views: 578

Re: trying to put millisecond at timed menus

it works, thank you :D

only I needed to change this for the code works well

Code: Select all

timer 0.01 repeat True action If(time > 0.01, true=SetVariable('time', time - 0.01), false=[Hide('countdown'), Jump(timer_jump)])
by stwkun
Wed Jul 30, 2014 8:37 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] trying to put millisecond at timed menus
Replies: 2
Views: 578

[Solved] trying to put millisecond at timed menus

http://www.renpy.org/wiki/renpy/doc/coo ... imed_menus

I used this code and works well, but I want the time shows millisecond too, how can I make it?
by stwkun
Fri Jul 11, 2014 7:23 pm
Forum: Ren'Py Questions and Announcements
Topic: How to set disable transitions as default
Replies: 0
Views: 283

How to set disable transitions as default

How to set disable transitions as default :?:
by stwkun
Mon Jul 07, 2014 5:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Can a apk created with renp'y play a video?
Replies: 2
Views: 448

Re: Can a apk created with renp'y play a video?

I think the problem is in my device. Thank for answering
by stwkun
Sun Jul 06, 2014 12:53 am
Forum: Ren'Py Questions and Announcements
Topic: Can a apk created with renp'y play a video?
Replies: 2
Views: 448

Can a apk created with renp'y play a video?

I tried to put a video in a apk, but when I test in a android device the game crush $ renpy.movie_cutscene("mivideo.avi") I tried to put a video in a apk, but when I test in a android device the game doesn't work I tried with different formats (mp4, avi, mpg ,ogg) so, can a apk created wit...
by stwkun
Thu Jul 03, 2014 2:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How can I make bigger FileScreenshot(i)?
Replies: 2
Views: 376

[Solved] How can I make bigger FileScreenshot(i)?

I tried to change the size of FileScreenshot(i) from "screen file_picker" (load/save) but I don´t know how to do it. :?: :?:
by stwkun
Thu Jun 19, 2014 9:11 am
Forum: Ren'Py Questions and Announcements
Topic: What video formats/codecs can Ren'Py play? [answered]
Replies: 3
Views: 1716

Re: What video formats/codecs can Ren'Py play? [answered]

Avi works perfectly, if you use mp4 renpy will crush . Video play doesn't work in android games
by stwkun
Wed Jun 18, 2014 11:51 am
Forum: Ren'Py Questions and Announcements
Topic: How can I make a video gallery?
Replies: 1
Views: 463

How can I make a video gallery?

Similar like image gallery but instead of see images play a video
by stwkun
Wed Jun 18, 2014 11:28 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How can I make bigger "bar value Preference"?
Replies: 2
Views: 481

Re: How can I make bigger "bar value Preference"?

I tried to change the code style pref_slider: xalign 0.5 xmaximum 192 # The Width you want for your Pref slider bar, right to left. ymaximum 100 # The Height you want for your Pref slider bar, top to bottom. the problem is the bar looks like 4 bars , but i found other solution that consist in use tw...