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

  1. on enterFrame
  2.   repeat with i = 2 to 21
  3.     set the visible of sprite i to 1
  4.   end repeat
  5.   updateSelected()
  6.   checkItems()
  7. end
  8.  
  9. on updateSelected
  10.   global gselectedBoxes
  11.   repeat with x = 1 to 6
  12.     if getAt(gselectedBoxes, x) = 1 then
  13.       set the memberNum of sprite (x + 1) to the number of member ("box" & x & ".select")
  14.       next repeat
  15.     end if
  16.     set the memberNum of sprite (x + 1) to the number of member ("box" & x & ".")
  17.   end repeat
  18.   set the text of field "rollover text" to EMPTY
  19. end
  20.