home *** CD-ROM | disk | FTP | other *** search
/ MACup 1998 March / Image.iso / showdata / ECKESPIE.Dxr / 00002.ls < prev    next >
Encoding:
Text File  |  1997-07-31  |  364 b   |  21 lines

  1. global myRo
  2.  
  3. on idle
  4.   set myRo to rollOver()
  5. end
  6.  
  7. on exitFrame
  8.   MenueButtons()
  9.   AuswahlZwei(30, 4, ["1", "2", "3", "4"])
  10.   checkMousedownBt(11)
  11.   go(the frame)
  12. end
  13.  
  14. on checkMousedownBt whichsprite
  15.   if rollOver(whichsprite) and the mouseDown then
  16.     set the visible of sprite whichsprite to 1
  17.   else
  18.     set the visible of sprite whichsprite to 0
  19.   end if
  20. end
  21.