View Single Post
  #3  
Old 12-24-2012, 08:35 PM
sssssssssss sssssssssss is offline
Cyril Rain
sssssssssss's Avatar
Join Date: May 2003
Location: Texas, USA
Posts: 1,134
sssssssssss will become famous soon enough
It is. It's in the Gui window which is showing up.

Called from onCreated()
PHP Code:
function CreateMapGUI() {
   new 
GuiControl("MapControl") {
     
useownprofile true;
     
profile.border 0;
     
screenwidth - (MapControl.width);
     
= -10;
     
width 145;
     
height 160;
  
    new 
GuiShowImgCtrl("Map_bgimg") {
      
image thiso.mapbgimg;
      
width getimgwidth(thiso.mapbgimg);
      
height getimgheight(thiso.mapbgimg);
      
horizsizing "right";
      
vertsizing "top";
      
layer 4;
      
0;
      
    }
    new 
GuiScrollCtrl("Map_scroll") {
      
profile GuiBlueScrollProfile;
      
useOwnProfile true;
      
profile.border 1;
      
profile.borderthickness 1;
      
hScrollBar vScrollBar "alwaysOff";
      
horizsizing "right";
      
vertsizing "top";
      
width 118;
      
height 117
      
6;
      
24;
      
      new 
GuiShowImgCtrl("Map_levelimg") {
        
image thiso.mapimg;
        
width getimgwidth(thiso.mapimg);
        
height getimgheight(thiso.mapimg);
        
red blue green 0.95;
        
layer 5;
        
0;
      }
    }
  }

__________________
Cyril Rain
Creator and leader of SLX
Admin of Elysium
Elysium's Facebook Page: http://facebook.com/GraalOnlineElysium
Graal Forum Thread: http://forums.graalonline.com...
Graalians Thread: http://www.graalians.com...


Reply With Quote