home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / sound / exam03.dba < prev    next >
Encoding:
Text File  |  1999-09-07  |  861 b   |  28 lines

  1. Rem * Title  : Sound Speed Change
  2. Rem * Author : DBS-MB
  3. Rem * Date   : 1st August 99
  4. rem ===========================================================
  5. rem DARK BASIC EXAMPLE PROGRAM 3
  6. rem ===========================================================
  7. rem This program will load and change the speed of a sound file 
  8. rem -----------------------------------------------------------
  9.  
  10. rem Set the ink to white and paper color to black 
  11. ink rgb(244,214,210),1
  12.  
  13. rem Load a wav sound file into number one
  14. load sound "sound.wav",1
  15.  
  16. rem Loop a sound file
  17. loop sound 1
  18.  
  19. rem Set the sound to middle of your speaker
  20. set sound pan 1,0
  21.  
  22. print "please type SET SOUND SPEED 1,15000 and press return"
  23. print "change the second parameter to alter playback!"
  24.  
  25. rem If you do not put a END command here then the program will
  26. rem quit to the cli automatically
  27.  
  28.