home *** CD-ROM | disk | FTP | other *** search
/ A Field Trip to the Sky (Demo) / Mac_Sunburst_AFieldTripToTheSky-Demo.iso / DIR / MEO.DIR / 00001_Script_Initialize < prev    next >
Text File  |  1996-03-21  |  774b  |  46 lines

  1. global gSSObject
  2. global gMercuryObject
  3.  
  4. global gCurObject
  5. global gPrevObject
  6. global gChildList
  7. global gChildSpriteList
  8.  
  9.  
  10. on startMovie
  11.   -- do the one time initialization  
  12.   initializeAFTTS
  13.   
  14.   -- set up the children objects, if necessary
  15.   
  16.   -- go back to the solar system
  17.   set gPrevObject to gSSObject
  18.   
  19.   -- tell the scripts that gCurObject is the solar system
  20.   set gCurObject to gMercuryObject
  21.   
  22.   -- lastly setup the child list
  23.   set gChildList to [gMercuryObject]
  24.   
  25.   -- and set the sprite numbers
  26.   set gChildSpriteList to [3]
  27.   
  28.   doInitGeneralButtons getProp(gCurObject,#id)
  29.   
  30.   guideStart()
  31. end
  32.  
  33. on stopMovie
  34.   guideStop()
  35. end
  36.  
  37.  
  38. -- ïïï generic idle
  39. on idle
  40.   --doCheckInfoBox()
  41.   doCheckForGoBackToSS()
  42. end
  43.  
  44.  
  45.  
  46.