I’ve got a scrolling frame and a list UI layout going from bottom to top. But does anyone know of a way to make the scrolling frame start scrolled at the bottom?
Yes you will want to set both of these in the scrolling frame:
Rotation to 180:
and Vertical Scroll Bar Position to Left (since it is now upside down):
1 Like
You will ofcourse have to orient (rotate) all your UI elements within the frame to 180.
1 Like
Im confused as to what you are showing… where is the scrolling frame?
1 Like
I have a solution. You can use ScrollingFrame.CanvasPosition
to set the canvasposition, and use ScrollingFrame.AbsoluteCanvasSize.Y
to move it to the bottom.
ScrollingFrame.CanvasPosition = Vector2.new(0, ScrollingFrame.AbsoluteCanvasSize.Y)
Sorry for the bump. I saw this post a long time ago and found a solution.
11 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.