Move scrollview position (the top and left position NOT the scroll position)

Hi, Anyone know how to move the scrollview to another position after created?

I know it can change the scroll content position but I want to move the whole scrollview which is the “top” and the “left” parameter when it created.

I tried sv.top, sv.y but they are not working

Sorry. I found it is working. My mistake

For others coming to this:  In the end, a scrollView is like a display object. They don’t have top and left parameters, they have a .x and .y position parameter, which, unless modified by .anchorX and/or .anchorY represent the center of the scrollView. That’s what you would change to move the scrollView.

top and left are convenience creator values that you can use to make the initial creation of the scrollView easier.

Rob

Sorry. I found it is working. My mistake

For others coming to this:  In the end, a scrollView is like a display object. They don’t have top and left parameters, they have a .x and .y position parameter, which, unless modified by .anchorX and/or .anchorY represent the center of the scrollView. That’s what you would change to move the scrollView.

top and left are convenience creator values that you can use to make the initial creation of the scrollView easier.

Rob