home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / ECKEMS4.DXR / 00016.ls < prev    next >
Encoding:
Text File  |  1998-03-27  |  436 b   |  25 lines

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