home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 165 / XENIATGM165.ISO / avvio_cd.exe / avvio_cd.dxr / 00001.ls next >
Encoding:
Text File  |  2003-03-27  |  583 b   |  20 lines

  1. on prepareMovie
  2.   global gMyMiaw, count1
  3.   (the stage).visible = 0
  4.   the alertHook = script("Alert")
  5.   stageWidth = 960
  6.   stageHeigth = 720
  7.   if (the desktopRectList)[1][3] = 800 then
  8.     stageWidth = 720
  9.     stageHeigth = 540
  10.   end if
  11.   ax = ((the desktopRectList)[1][3] - stageWidth) / 2
  12.   Bx = ax + stageWidth
  13.   ay = ((the desktopRectList)[1][4] - stageHeigth) / 2
  14.   By = ay + stageHeigth
  15.   open(window("cddata\main"))
  16.   window("cddata\main").windowType = 8
  17.   window("cddata\main").rect = rect(ax, ay, Bx, By)
  18.   window("cddata\main").title = "The Games Machine - Silver Disk"
  19. end
  20.