home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 18 / MacAddict_018_1998_02.iso / MEDIA / STORE.dxr / Internal_23_box2.ls < prev    next >
Encoding:
Text File  |  1997-12-04  |  709 b   |  28 lines

  1. on mouseEnter me
  2.   cursor(260)
  3.   set the text of field "whichBox" to "box2."
  4.   put line 2 of field "storeData" into field "temp"
  5.   updateData()
  6.   set the text of field "roll info" to "Click here to get info on " & field "appName"
  7.   set the member of sprite 52 to member "s02"
  8.   set the visible of sprite 52 to 1
  9. end
  10.  
  11. on mouseLeave me
  12.   cursor(-1)
  13.   set the text of field "roll info" to " "
  14.   set the visible of sprite 52 to 0
  15. end
  16.  
  17. on mouseDown me
  18.   set the locH of sprite 38 to the mouseH
  19.   set the locV of sprite 38 to the mouseV
  20. end
  21.  
  22. on mouseUp me
  23.   set the visible of sprite the currentSpriteNum to 0
  24.   set the visible of sprite 38 to 1
  25.   set i to the currentSpriteNum
  26.   put i into field "lastClicked"
  27. end
  28.