home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 11 D / MM_TREND.ISO / prog / isdn / shared.dir / 00361.ls < prev    next >
Encoding:
Text File  |  1996-09-17  |  387 b   |  21 lines

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