API issues moving windows

 From:  Michael Gibson
10946.5 In reply to 10946.4 
Hi Joe, it's probably because calling moi.ui.createDialog() is asynchronous. When you're calling

So probably you'd need to put the call to .move(x,y) inside the dialog in an onload="" handler.

What's probably happening is the call to .move(1, y) is happening before the dialog is finished loading and it is going to position the dialog when it is finished loading and that then wipes out the initial move.

- Michael