puter.ui.setWindowX()
GUISets the X position of the window.
puter.ui.setWindowX(x)
x
(Float) (Required)
The new x position for this window.
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
// sets the position of the window to 100px from the left
puter.ui.setWindowX(100);
</script>
</body>