home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / Menu.dxr / 00024_Najezd a klik.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  988 b   |  45 lines

  1. property Soubor
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Soubor, [#comment: "Soubor:", #format: #string, #default: EMPTY])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the visible of sprite (the spriteNum of me + 1) to 0
  16. end
  17.  
  18. on endSprite me
  19.   set the visible of sprite the spriteNum of me to 1
  20.   set the visible of sprite (the spriteNum of me + 1) to 0
  21. end
  22.  
  23. on mouseEnter me
  24.   puppetSound(1, "Najezd")
  25.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  26.   set the visible of sprite (the spriteNum of me + 1) to 1
  27. end
  28.  
  29. on mouseLeave me
  30.   set the visible of sprite (the spriteNum of me + 1) to 0
  31. end
  32.  
  33. on mouseDown me
  34.   puppetSound(1, "Klik")
  35. end
  36.  
  37. on mouseUp me
  38.   global Cesta, Zapnuty_zvuk
  39.   puppetSound(2, 0)
  40.   if Zapnuty_zvuk then
  41.     puppetSound(3, "Hudba")
  42.   end if
  43.   play movie Cesta & Soubor
  44. end
  45.