home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactif 7 / cd.iso / pc / PC / Demos / GroovMak / data1.cab / Program_Executable_Files / Media / LoadU.dxr / 00046.ls < prev    next >
Encoding:
Text File  |  1999-09-17  |  490 b   |  20 lines

  1. on mouseDown
  2.   if the last char in field "fieldUserPath" <> "\" then
  3.     repeat while the mouseDown
  4.       set the memberNum of sprite 16 to the number of member "Hpreview"
  5.       updateStage()
  6.     end repeat
  7.   end if
  8. end
  9.  
  10. on mouseUp
  11.   if the last char in field "fieldUserPath" <> "\" then
  12.     if soundBusy(1) then
  13.       sound stop 1
  14.     else
  15.       set the volume of sound 1 to 255 * integer(field "fieldMasterVol") / 128
  16.       sound playFile 1, field "fieldUserPath"
  17.     end if
  18.   end if
  19. end
  20.