home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazine 28 Bonus / CDRomMagazine-SoftKey-ArtPassion-FrenchVersion-Win31Mac.bin / data / artindx.dir / 00033_Script_33 < prev    next >
Text File  |  1996-06-20  |  399b  |  14 lines

  1. on setUpCursors SpecialCursor
  2.   global spriteChannelList
  3.   set hotspotList =[ ] 
  4.   set hotspot = [ ] 
  5.   repeat with i = 1 to count(spriteChannelList)
  6.     set spriteChannel = getAt(spriteChannelList,i)
  7.     Append hotspot ,spriteChannel
  8.     Append hotspot, SpecialCursor
  9.     Append hotspotList,hotspot
  10.     Set hotspot = [ ] 
  11.   end repeat
  12.   
  13.   processFrameSetSpriteCursors hotspotList
  14. end