ID:1876633
 
Not a bug
BYOND Version:507
Operating System:Windows 7 Ultimate 64-bit
Web Browser:
Applies to:Dream Seeker
Status: Not a bug

This is not a bug. It may be an incorrect use of syntax or a limitation in the software. For further discussion on the matter, please consult the BYOND forums.
Descriptive Problem Summary:
One cannot call moveTo or moveBy on BYOND created popups. You can do it for window.open popups, but as you know that creates a new IE window, and the desire for this comes from wanting to make chromeless windows usable.

Code Snippet (if applicable) to Reproduce Problem:
usr << browse("<button onclick='window.moveTo(50,50);'>Move</button>", "titlebar=0;window=hello;can_resize=0")


Expected Results:
To have the window moved to 50,50
Actual Results:
Nothing happens.

Happens all the time, on all versions that I'm aware of.

Workarounds:
Nothing that isn't extremely hacky.
The browse() function creates a BYOND window that contains a browser element, not an actual IE window, the javascript has no access to the BYOND window.

Your best bet is having an interface window that contains the browser element, using that, and then using winset() to alter the position using a javascript call.
It's not a direct browser window, so naturally it doesn't support this. You have to have the skin move the window for you.
Lummox JR resolved issue (Not a bug)