Search found 27 matches

by andriodmactemporary
Tue Apr 06, 2021 9:44 am
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Regards view of view box
Replies: 2
Views: 348

(Solved) Regards view of view box

Image

Here has shown in the image, how can I take the view of the viewport scroll to the end when I enter the screen which contains that respective viewport every time?
by andriodmactemporary
Tue Apr 06, 2021 9:19 am
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Regards vpgrid with indefinite children sizes
Replies: 8
Views: 596

Re: Regards vpgrid with indefinite children sizes

You can place viewport anywhere with any size, including in the corner of the screen. Internally vpgrid is literally a viewport, if you couldn't do something with viewport, you wouldn't be able to do this with vpgrid. And if you add vbox with all messages (dynamically filled) it will have scrollbar...
by andriodmactemporary
Mon Apr 05, 2021 4:59 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Regards vpgrid with indefinite children sizes
Replies: 8
Views: 596

Re: Regards vpgrid with indefinite children sizes

Ocelot wrote: Mon Apr 05, 2021 4:50 pm Why vpgrid? Why not viewport and vbox?
Can't use the viewport because it is being displayed at the corner of the screen.
Also, can't use vbox because I need a component with scrolling functionality because messages will be added dynamically.
by andriodmactemporary
Mon Apr 05, 2021 4:40 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Regards vpgrid with indefinite children sizes
Replies: 8
Views: 596

Re: Regards vpgrid with indefinite children sizes

Image

Here every message is of the same size, but when I insert an image (for ex, dimension of 128x128) in this vpgrid, that image is being overlapped on the messages.
by andriodmactemporary
Mon Apr 05, 2021 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Regards vpgrid with indefinite children sizes
Replies: 8
Views: 596

(Solved) Regards vpgrid with indefinite children sizes

How to create vpgrid which consists of children of different dimensions/sizes ?
by andriodmactemporary
Sun Feb 14, 2021 6:44 am
Forum: Ren'Py Questions and Announcements
Topic: (Solved) How to increase the left margin for a vertical scrollbar in a vpgrid
Replies: 6
Views: 974

Re: (Question) How to increase the left margin for a vertical scrollbar in a vpgrid

It's not working for me, below is my code you could go through it to resolve the problem. Thanks in advance vpgrid: cols 3 rows 4 scrollbars "vertical" right_margin 10 # Error u'right_margin' is not a keyword argument or valid child for the vpgrid statement draggable True mousewheel True x...
by andriodmactemporary
Tue Feb 09, 2021 11:43 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) How to increase the left margin for a vertical scrollbar in a vpgrid
Replies: 6
Views: 974

Re: (Question) How to increase the left margin for a vertical scrollbar in a vpgrid

Vpgrid won't support "right_margin" property, it's giving :

line 34: u'right_margin' is not a keyword argument or valid child for the vpgrid statement.
right_margin 100

^
by andriodmactemporary
Mon Feb 08, 2021 6:24 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) How to increase the left margin for a vertical scrollbar in a vpgrid
Replies: 6
Views: 974

(Solved) How to increase the left margin for a vertical scrollbar in a vpgrid

When creating a vpgrid the vertical scrollbar of that vpgrid is getting attached to the content of the grid, so how can I increase/change the margins for the scrollbar?

Image
by andriodmactemporary
Mon Jan 25, 2021 5:58 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) screen closing on calling label but, I want it to stay on the same screen.
Replies: 4
Views: 541

(Solved) screen closing on calling label but, I want it to stay on the same screen.

Hi there, When I calling a label with Call() in the action of imagebutton, the Screen in which that image button is situated is getting closed but I need that Screen to stay open. screen BuyingScreen(): frame : vbox: imagebutton: idle "icons/increment.png" action Call("setBuyQuantity&...