It would be nice to have a method of setting the position of a Modal Window. Currently, window position must be set after creating the window. But since a Modal window halts all processing, the command to reposition the window is not seen until after the window is closed.
I envision something like this:
w = New Window("My Window",
<< Modal,
<< Position(100, 100),
Text Box("I'm a window!")
);
Credit to In JSL, can I tell a modal window where to be?