minextent in external windows doesn't seem to function. You can see it
trying to fight your resizing(you can see the window flickering to try to force its size to the minextent) but it doesn't actually do anything.
Also, the externalwindow object you quoted in this post:
http://forums.graalonline.com/forums...&postcount=746 doesn't seem to function anymore.
I've tried to edit the external window position, I've tried to echo it... but nothing. A code snipped:
PHP Code:
new GuiWindowCtrl("dusty_nweditor_frame") {
isexternal = true;
profile = GuiBlueWindowProfile;
useownprofile = true;
profile.bitmap = "guiblue_window_noback.png";
profile.fillcolor = profile.fillcolorhl = profile.fillcolorna = {240,240,240,255};
externalwindow.x = 0;
externalwindow.y = 0;
echo("test: " @ externalwindow.width);
}
And all I see echoed is:
PHP Code:
Graal has been activated!
test:
test:
test:
test:
test:
Also, it seems that the "not forgetting focus" that happens when highlighting text is also happening to resizeable controls, like GuiFrameSetCtrl borders. If you try to resize and move the mouse out of the control it gets stuck trying to resize even after you let go of the mouse button. You have to click to reset it.
Also, the function being called when a window is resized(I can't seem to say it because of the stupid Incapsula security) only seems to be called on external windows when you let go of them. This makes resizing/moving internal controls fairly ugly because they just snap into their new position/sizes when you let go.