home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / multi / acacia / mac_demo / mac_demo.dxr / 00001.ls next >
Encoding:
Text File  |  1996-11-05  |  616 b   |  21 lines

  1. global gCD_Root, gDelim, gPath
  2.  
  3. on startMovie
  4.   set the exitLock to 1
  5.   DoMacStuff()
  6.   if not (the quickTimePresent) then
  7.     alert("This demo needs QuickTime to run." & RETURN & "Install it by copying the files in" & RETURN & "the 'Ext' folder to your system" & RETURN & "folder, then try again.")
  8.     quit()
  9.   end if
  10.   if the colorDepth < 8 then
  11.     alert("You must have at least 8-bit colour" & RETURN & "to run this product. Please reset your" & RETURN & "monitor to this level and try again")
  12.     quit()
  13.   end if
  14.   go(1, gPath & "starter")
  15. end
  16.  
  17. on DoMacStuff
  18.   set gDelim to ":"
  19.   set gPath to the pathName
  20. end
  21.