home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_143_choose-play audio file = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  662 b   |  16 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  3. end
  4.  
  5. on mouseDown
  6.   global gAlbumInCatalogue, gTrackToPlay
  7.   set the member of sprite 13 to "audio controls"
  8.   set gTrackToPlay to "@:Audio:album" & string(gAlbumInCatalogue) & ":track0" & string(the currentSpriteNum - 10) & ".wav"
  9.   sound playFile 1, gTrackToPlay
  10.   set the member of sprite 19 to "trackList" & string(gAlbumInCatalogue) & "song" & string(the currentSpriteNum - 10) & "!"
  11. end
  12.  
  13. on mouseLeave
  14.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  15. end
  16.