home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #13 / CD 13 (Black) - 2001.iso / K-CS.DCR / 00412_KlikKommando.ls < prev    next >
Encoding:
Text File  |  2001-08-24  |  741 b   |  28 lines

  1. property MouseCommand, MouseCommand2
  2. global CurrentStep
  3.  
  4. on mouseUp
  5.   if voidp(MouseCommand) then
  6.     set MouseCommand to "beep"
  7.   end if
  8.   if voidp(MouseCommand2) then
  9.     set MouseCommand2 to "beep"
  10.   end if
  11.   if CurrentStep = 0 then
  12.     do(MouseCommand)
  13.   else
  14.     if CurrentStep = 1 then
  15.       do(MouseCommand2)
  16.     end if
  17.   end if
  18. end
  19.  
  20. on getBehaviorDescription
  21.   return "On mouseclick, jump to an appropriate handler. (This is a specialized behaviour for emulating sliders)."
  22. end
  23.  
  24. on getPropertyDescriptionList
  25.   set p_list to [#MouseCommand: [#format: #string, #comment: "On mouseclick execute this", #default: "beep"], #MouseCommand2: [#format: #string, #comment: "On mouseclick execute this", #default: "beep"]]
  26.   return p_list
  27. end
  28.