home *** CD-ROM | disk | FTP | other *** search
/ A Field Trip to the Sky (Demo) / Mac_Sunburst_AFieldTripToTheSky-Demo.iso / DIR / SHARED.DIR / 01112_Script_MIAWS < prev    next >
Text File  |  1996-03-27  |  913b  |  36 lines

  1. --ïï openModalMIAW ïï
  2. on openModalMIAW theMIAWName
  3.   
  4.   -- create the window w/ the name as .dir file
  5.   set theWindow to window theMIAWName
  6.   set the filename of theWindow to theMIAWName
  7.   -- hide it
  8.   set the visible of theWIndow to FALSE
  9.   -- make it plain
  10.   set the windowType of theWindow to 2
  11.   -- make it modal
  12.   set the modal of theWIndow to TRUE
  13.   -- position it
  14.   set r to the rect of theWindow
  15.   
  16.   set w to getAt(r,3) - getAt(r,1)
  17.   set h to getAt(r,4) - getAt(r,2)
  18.   set x to (the stageRight + the stageLeft)/2
  19.   set y to (the stageBottom + the stageTop)/2
  20.   set r to rect(x-w/2,y-h/2,x-w/2 + w,y-h/2+h)
  21.   
  22.   set the rect of theWindow to r
  23.   
  24.   -- open it and start it
  25.   open theWindow
  26.   set the visible of theWindow to FALSE
  27.   
  28.   return theWindow
  29. end
  30.  
  31. -- ïï closeModalMIAW ïï
  32. on closeModalMIAW theMIAWName
  33.   close window theMIAWName
  34.   forget window theMIAWName
  35. end
  36.