Search found 8 matches

by JinOptimist
Thu Mar 05, 2015 5:12 am
Forum: Ren'Py Questions and Announcements
Topic: Variable in imagebutton path(name) [SOLVED]
Replies: 2
Views: 655

Re: Variable in imagebutton path(name)

Thank you very match!
It works!
by JinOptimist
Tue Mar 03, 2015 5:36 am
Forum: Ren'Py Questions and Announcements
Topic: Variable in imagebutton path(name) [SOLVED]
Replies: 2
Views: 655

Variable in imagebutton path(name) [SOLVED]

Hi I want do something like that: screen viewport_Urban_Elite: for elite in elites: imagebutton auto "img hero/Face [elite.name] %s.gif" action [ToggleVariable("showById", 0, elite.id)] In this case I have error Not a displayable: None If I write this screen viewport_Urban_Elite:...
by JinOptimist
Mon Jan 05, 2015 3:29 am
Forum: Ren'Py Questions and Announcements
Topic: How execute several action on button click? [SOLVED]
Replies: 2
Views: 2202

Re: How execute several action on button click?

Thank you, very much!

I had some trouble with implement this. But it work!

Syntax required quotes. For example

Code: Select all

on "show" action SetField(mode, 'isShowMiniStat', False)
or

Code: Select all

action [SetField(mode, 'isShowMiniStat', True), Return(True)]
by JinOptimist
Sun Jan 04, 2015 4:23 pm
Forum: Ren'Py Questions and Announcements
Topic: re: On Asking Questions
Replies: 113
Views: 21968

Re: On Asking Questions

Thanks trooper6. I did it.
Need I remove my post from here?
by JinOptimist
Sun Jan 04, 2015 4:21 pm
Forum: Ren'Py Questions and Announcements
Topic: How execute several action on button click? [SOLVED]
Replies: 2
Views: 2202

How execute several action on button click? [SOLVED]

Hellow everyone. Sorry for mistake, I just started study English language. I have screen like this screen Stat_Carrier: text "Quest" xpos 0.4 ypos 250 color "#000" $i = 0 for q in mode._quests: $i += 1 $y = 250 + i*20 text "[i]) [q.name]" xpos 20 ypos y color "#000...
by JinOptimist
Sun Jan 04, 2015 5:06 am
Forum: Ren'Py Questions and Announcements
Topic: re: On Asking Questions
Replies: 113
Views: 21968

Re: On Asking Questions

Hellow everyone. Sorry for mistake, I just started study English language. I have screen like this screen Stat_Carrier: text "Quest" xpos 0.4 ypos 250 color "#000" $i = 0 for q in mode._quests: $i += 1 $y = 250 + i*20 text "[i]) [q.name]" xpos 20 ypos y color "#000...
by JinOptimist
Fri Jan 24, 2014 11:05 am
Forum: Ren'Py Questions and Announcements
Topic: ui.frame as static part bg
Replies: 4
Views: 780

Re: ui.frame as static part bg

Solved! I just used config.overlay_functions.append http://www.renpy.org/wiki/renpy/doc/reference/Overlays For Russian friends Нашёл решение, нужно использовать config.overlay_functions.append Можно всё что я рисовал и ложил во фрэйм кидать config.overlay_functions.append А что есть русскоязычный фо...
by JinOptimist
Fri Jan 24, 2014 10:14 am
Forum: Ren'Py Questions and Announcements
Topic: ui.frame as static part bg
Replies: 4
Views: 780

ui.frame as static part bg

Hi! Sorry for poor English. This is Google Translate. Thank tutorial. Learned how to create ui.frame. And found no pleasant feature, at the click of a mouse (eg when the next part of the text is displayed) created a frame disappears. I understand that most likely there is some obvious property, put ...