home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / SERVADRE.DXR / 00002.ls next >
Encoding:
Text File  |  1998-03-18  |  382 b   |  27 lines

  1. global myRo
  2.  
  3. on idle
  4.   set myRo to rollOver()
  5. end
  6.  
  7. on exitFrame
  8.   if (myRo > 5) and (myRo < 9) then
  9.     puppetSound("Klick2")
  10.   end if
  11.   if rollOver(6) then
  12.     go(marker("Service") + 2)
  13.   end if
  14.   if rollOver(7) then
  15.     go(marker("Service"))
  16.   end if
  17.   if rollOver(8) then
  18.     go(marker("Service") + 1)
  19.   end if
  20.   MenueButtons()
  21.   go(the frame)
  22. end
  23.  
  24. on mouseDown
  25.   continue()
  26. end
  27.