Search found 14 matches

by smollvrn
Sat Oct 23, 2021 5:33 pm
Forum: Development of Ren'Py
Topic: redraw screen with new value of variable
Replies: 2
Views: 4085

Re: redraw screen with new value of variable

say screen still do not respond to changes in the value of the displayed variables in current screen, can it be fixed?
by smollvrn
Tue Oct 12, 2021 4:47 am
Forum: Ren'Py Questions and Announcements
Topic: transform in 7.4.9 doesnt work
Replies: 2
Views: 494

Re: transform in 7.4.9 doesnt work

if press "shift+r" in this scene, all work again
by smollvrn
Sun Oct 10, 2021 10:25 am
Forum: Ren'Py Questions and Announcements
Topic: transform in 7.4.9 doesnt work
Replies: 2
Views: 494

transform in 7.4.9 doesnt work

it works in 7.4.8 but not in 7.4.9 define config.relative_transform_size = False doesnt help #define config.relative_transform_size = False transform transformTop2: xpos 0 ypos -3240 easein 10 xpos 0 ypos 0 label start: show eileen happy e "1" scene bag at transformTop2 e "2" ret...
by smollvrn
Thu Sep 16, 2021 2:44 pm
Forum: Development of Ren'Py
Topic: redraw screen with new value of variable
Replies: 2
Views: 4085

redraw screen with new value of variable

in 7.4.8 showed screens didnt redraw when some values of variables have changed by substitution on this screen, 7.4.9 fixed it the way it was before. But say screen and show text do not respond to changes in the value of the displayed variables in current screen, only in next interact. it would be g...
by smollvrn
Tue Aug 24, 2021 2:16 pm
Forum: Ren'Py Questions and Announcements
Topic: selected state button by value variable
Replies: 3
Views: 632

Re: selected state button by value variable

Alex wrote: Tue Aug 24, 2021 2:03 pm
smollvrn wrote: Tue Aug 24, 2021 1:37 pm ... i can not find read about it...
Here's some - viewtopic.php?f=51&t=60864
thanks
by smollvrn
Tue Aug 24, 2021 1:37 pm
Forum: Ren'Py Questions and Announcements
Topic: selected state button by value variable
Replies: 3
Views: 632

selected state button by value variable

Hi, would some help me understand why button get selected state without a click. if i try set by button one of variable to value what its already have, button get selected state. i can not find read about it init: $ vari= False $ vari2= True style button: background "#006" insensitive_back...
by smollvrn
Sun Jul 18, 2021 5:02 am
Forum: Development of Ren'Py
Topic: del
Replies: 1
Views: 3499

del

del
by smollvrn
Tue Jun 29, 2021 2:01 pm
Forum: Development of Ren'Py
Topic: generate translations, duplicate menu options
Replies: 1
Views: 5737

generate translations, duplicate menu options

does not generate translate strings if they duplicate in menu options "yes" and "no" in code generate only one time in translate strings 01 # The script of the game goes in this file. 02 03 # Declare characters used by this game. The color argument colorizes the 04 # name of the ...
by smollvrn
Mon May 31, 2021 11:05 am
Forum: Ren'Py Questions and Announcements
Topic: conditional substitution for "what"
Replies: 2
Views: 692

conditional substitution for "what"

Hi, i need check conditional statement before each say or menu choice 'what'. Would you help me to create function or maybe oneline substution for this: if persistent.c=="1": $ a = tuple1 if persistent.c=="2": $ a = tuple2 "[a[0]]" something like that: "[tuple(c)[0...
by smollvrn
Sun May 23, 2021 5:36 pm
Forum: Development of Ren'Py
Topic: should vpgrid takes position size properties?
Replies: 3
Views: 4007

Re: should vpgrid takes position size properties?

vpgrid gets its size from its children and its position from its parent. https://www.renpy.org/doc/html/screens.html#vpgrid In addition, a vpgrid takes all properties a viewport can, and the following groups of style properties: Common Properties Position Style Properties Position Style Properties ...
by smollvrn
Sun May 23, 2021 1:30 pm
Forum: Development of Ren'Py
Topic: should vpgrid takes position size properties?
Replies: 3
Views: 4007

should vpgrid takes position size properties?

should vpgrid takes position size properties? https://i.imgur.com/DbFghcY.jpg screen char: vpgrid: yfill True xminimum 427 cols 1 scrollbars "vertical" side_xalign 0.0 vbox : text "1" label start: show screen char "scrollbar test" return
by smollvrn
Sun May 23, 2021 10:17 am
Forum: Development of Ren'Py
Topic: modal bug?
Replies: 3
Views: 3887

Re: modal bug?

PyTom wrote: Sat May 22, 2021 8:18 pm Could you please test Ren'Py 7.4.5? It should have a fix for this.
no chages with 7.4.4
Image
by smollvrn
Sat May 22, 2021 7:04 am
Forum: Development of Ren'Py
Topic: modal bug?
Replies: 3
Views: 3887

modal bug?

in 7.4.4 modal dosent prevent hover screen button_with_hoverarea: imagebutton: idle Transform("gui/slider/horizontal_idle_thumb.png") hover Transform("gui/slider/horizontal_hover_thumb.png") action (Hide("hover"), Show(" buttons_with_modal_true_but_hover_mousearea_...
by smollvrn
Sun Mar 14, 2021 3:56 pm
Forum: Ren'Py Questions and Announcements
Topic: call value dimensional dictionary with variables
Replies: 1
Views: 356

call value dimensional dictionary with variables

hello, how to call dimensional dictionary with variables in say one line ???? $ my_dict = { "key": ("0", "1"), "key1": ("0", "1") } $b = key $i = 0 # work a "[my_dict[key][0]]" $c = my_dict[b][i] a "[c]" #doesn't work a ...