home *** CD-ROM | disk | FTP | other *** search
/ VCD Film, Television & An…on Creation Encyclopedia / mycd.iso / Direct5 / DATA.Z / HELP.DIR / Internal_1.ls < prev    next >
Encoding:
Text File  |  1996-03-15  |  536 b   |  30 lines

  1. on startMovie
  2.   global magcursor
  3.   set magcursor to [the number of member "magcursor"]
  4.   set the cursor of sprite 26 to magcursor
  5.   set the cursor of sprite 27 to magcursor
  6.   set the cursor of sprite 28 to magcursor
  7.   set the cursor of sprite 22 to magcursor
  8. end
  9.  
  10. on stopMovie
  11.   cursor(-1)
  12. end
  13.  
  14. on helpButton
  15.   if the clickOn = 11 then
  16.     go(marker(-1))
  17.   end if
  18.   if the clickOn = 12 then
  19.     go(marker(1))
  20.   end if
  21.   if the clickOn = 13 then
  22.     put "play done"
  23.     play done
  24.   end if
  25. end
  26.  
  27. on resetMovie
  28.   play movie "Begin.DIR"
  29. end
  30.