Button Reconfiguration

I recently saw a post on how to make a button stay in the bottom right corner of the screen, and when you change screen sizes, the margins on both sides would stay the same.

See how the margins on both sides stay the same, even if you change the size of the screen.

Also shown here:

In the button on the bottom right of the screen:

Anchor point: 1, 1
Position: {1, -20}, {1, -20}

Essentially, I want that same effect, but for the button to be on the bottom left of the screen. I believe the anchor point would have to be 0, 1, but I’m not sure.

You can change the position to be {0,20},{1,-20}. Set the anchor point to (0,1). This way, it will be pixels to the right of the edge and 20 pixels above the bottom.

Thank you, it works perfectly.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.