home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazine 28 Bonus / CDRomMagazine-SoftKey-ArtPassion-FrenchVersion-Win31Mac.bin / data / artindx.dir / 00032_Script_32 < prev    next >
Text File  |  1996-06-20  |  314b  |  18 lines

  1. on startMovie
  2.   setAuxiliarySearch
  3.   goToStoredIndexPage
  4.   initiateIndex
  5. end
  6.  
  7. on storeIndexPage
  8.   global gIndexPage
  9.   put the frame into gIndexPage
  10. end
  11.  
  12. on goToStoredIndexPage
  13.   global gIndexPage
  14.   if not voidP(gIndexPage) and not (gIndexPage = EMPTY) then
  15.     go to frame gIndexPage
  16.   end if
  17. end
  18.