View Single Post
  #12  
Old 11-29-2011, 07:16 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
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.0;
    
externalwindow.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.

Last edited by DustyPorViva; 11-29-2011 at 07:33 AM..
Reply With Quote