home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2003 #5 / K-CD-5-2003.ISO / Layout / data1.cab / QuickTours / QT16WEB.EXE / QT16WEB.dxr / 00024.ls < prev    next >
Encoding:
Text File  |  2002-07-29  |  774 b   |  35 lines

  1. on enterFrame
  2.   global anim
  3.   if (anim = 0) and (the frame < 9) then
  4.     put the frame into word 1 of field 23
  5.   end if
  6.   if the frame = 1 then
  7.     if the memberNum of sprite 18 <> 18 then
  8.       set the memberNum of sprite 18 to 18
  9.       set the memberNum of sprite 17 to 19
  10.       set the memberNum of sprite 16 to 15
  11.     end if
  12.   else
  13.     set the memberNum of sprite 18 to 9
  14.     set the memberNum of sprite 17 to 12
  15.     if the frame = the lastFrame then
  16.       set the memberNum of sprite 16 to 20
  17.     else
  18.       set the memberNum of sprite 16 to 15
  19.     end if
  20.   end if
  21.   updateStage()
  22.   if anim = 0 then
  23.     pause()
  24.   end if
  25. end
  26.  
  27. on idle
  28.   if rollOver(15) or rollOver(16) or rollOver(17) or rollOver(18) then
  29.     cursor([84, 85])
  30.   else
  31.     cursor(0)
  32.   end if
  33.   pass()
  34. end
  35.