home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #4 / K-CD-4-2002.ISO / K-CS.DCR / 00478_Drag'n'Drop.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  2.5 KB  |  57 lines

  1. property TargetSprite, startPos, correctspringBack, incorrectspringBack, incorrectvanish, correctvanish, IncorrectCommand, correctCommand, DescribeSprite
  2. global Errorcount
  3.  
  4. on new me
  5.   set the visible of sprite the spriteNum of me to 1
  6. end
  7.  
  8. on mouseDown me
  9.   set startPos to the loc of sprite the spriteNum of me
  10.   repeat while the stillDown = 1
  11.     set the loc of sprite the spriteNum of me to point(the mouseH, the mouseV)
  12.     updateStage()
  13.   end repeat
  14. end
  15.  
  16. on mouseEnter me
  17.   set the visible of sprite DescribeSprite to 1
  18. end
  19.  
  20. on mouseLeave me
  21.   set the visible of sprite DescribeSprite to 0
  22. end
  23.  
  24. on mouseUp me
  25.   if sprite the spriteNum of me intersects sprite(the TargetSprite of me) then
  26.     do(the correctCommand of me)
  27.     if the correctvanish of me = 1 then
  28.       set the loc of sprite the spriteNum of me to point(1000, 1000)
  29.       exit
  30.     end if
  31.     if the correctspringBack of me = 1 then
  32.       set the loc of sprite the spriteNum of me to startPos
  33.     end if
  34.   else
  35.     do(the IncorrectCommand of me)
  36.   end if
  37.   if the incorrectvanish of me = 1 then
  38.     set the loc of sprite the spriteNum of me to point(1000, 1000)
  39.     exit
  40.   end if
  41.   if the incorrectspringBack of me = 1 then
  42.     set the loc of sprite the spriteNum of me to startPos
  43.   end if
  44. end
  45.  
  46. on getBehaviorDescription
  47.   return "Creates sprites that can be dropped on any other [user specified] sprite. You can define the target sprite, " && RETURN & "whether the dragged sprite snaps back to it's start position, and handlers to run if the drop was on or off target."
  48. end
  49.  
  50. on getPropertyDescriptionList
  51.   if voidp(TargetSprite) then
  52.     set TargetSprite to 1
  53.   end if
  54.   set p_list to [#TargetSprite: [#default: TargetSprite, #format: #integer, #comment: "Target Sprite Number", #range: [#min: 1, #max: 120]], #incorrectspringBack: [#default: 1, #format: #boolean, #comment: "Spring back when incorrect?"], #correctspringBack: [#default: 0, #format: #boolean, #comment: "Spring back when correct?"], #incorrectvanish: [#default: 0, #format: #boolean, #comment: "Vanish when dropped off the target?"], #correctvanish: [#default: 1, #format: #boolean, #comment: "Vanish when dropped on the target?"], #correctCommand: [#format: #string, #comment: "The handler to run if dropped on the target", #default: "beep"], #IncorrectCommand: [#format: #string, #comment: "The handler to run if dropped off the target", #default: "beep 2"], #DescribeSprite: [#default: 0, #format: #integer, #comment: "Description of sprite - appear on rollover, vanish on click", #range: [#min: 1, #max: 120]]]
  55.   return p_list
  56. end
  57.