home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2003 #3 / K-CD_2003-03.iso / Winamp / winamp3_0-full.exe / Skins / Default.wal / scripts / center.m next >
Text File  |  2002-07-03  |  345b  |  17 lines

  1. #include <lib/std.mi>
  2.  
  3. Global GuiObject obj;
  4. Global Group parentGroup;
  5.  
  6. System.onScriptLoaded() {
  7.   parentGroup = getScriptGroup();
  8.   obj = parentGroup.getObject(getParam());
  9. }
  10.  
  11. parentGroup.onResize(int x, int y, int w, int h) {
  12.   int _w = obj.getWidth();
  13.   int _h = obj.getHeight();
  14.   obj.resize((w-_w)/2, (h-_h)/2, _w, _h);
  15. }
  16.  
  17.