home *** CD-ROM | disk | FTP | other *** search
/ Samuko Hentai / samuko.iso / pc / SAMUKO / SOMM.DXR / 00058.ls < prev    next >
Encoding:
Text File  |  2002-08-06  |  390 b   |  20 lines

  1. on mouseEnter
  2.   member(the memberNum of sprite the currentSpriteNum).foreColor = 19
  3.   cursor(280)
  4. end
  5.  
  6. on mouseLeave
  7.   cursor(-1)
  8.   member(the memberNum of sprite the currentSpriteNum).foreColor = 35
  9. end
  10.  
  11. on mouseDown
  12.   global gversionos
  13.   member(the memberNum of sprite the currentSpriteNum).foreColor = 35
  14.   if gversionos = "¥" then
  15.     copie_sur_PC()
  16.   else
  17.     copie_mac()
  18.   end if
  19. end
  20.