Running this script,
PHP Code:
//#CLIENTSIDE
function onCreated()
{
if (window != NULL) window.destroy();
new GuiWindowCtrl("window")
{
position = {5,5};
extent = {300,250};
}
echo(" ");
echo(" ");
printf("Co-ords: %i %i",window.position[0],window.position[1]);
printf("Extent: %i %i",window.extent[0],window.extent[1]);
window.destroy();
new GuiWindowCtrl("window")
{
position = "5 5";
extent = "300 250";
}
printf("Co-ords: %i %i",window.position[0],window.position[1]);
printf("Extent: %i %i",window.extent[0],window.extent[1]);
}
prints out
PHP Code:
Co-ords: 5 5
Extent: 300 250
Co-ords: 5 5
Extent: 300 250
in the F2 menu. So I guess not

.