puter.ui.setWindowY()
GUISets the y position of the window.
puter.ui.setWindowY(y)
y
(Float) (Required)
The new y position for this window.
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
// sets the position of the window to 200px from the top
puter.ui.setWindowY(200);
</script>
</body>