home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 - Expo 2000 / Image.iso / t-online / show / t_intro.dxr / 00154.ls < prev    next >
Encoding:
Text File  |  1996-11-25  |  419 b   |  18 lines

  1. on mouseDown
  2.   global infoline
  3.   set infoline to infoline + 1
  4.   if infoline > 1 then
  5.     set infoline to 0
  6.   end if
  7.   puppetSound("click")
  8.   if infoline = 1 then
  9.     set the locH of sprite 48 to the locH of sprite 48 - 600
  10.     set the blend of sprite 48 to 100
  11.   end if
  12.   if infoline = 0 then
  13.     set the locH of sprite 48 to the locH of sprite 48 + 600
  14.     set the blend of sprite 48 to 0
  15.   end if
  16.   updateStage()
  17. end
  18.