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
|