home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / sound / exam07.dba < prev    next >
Encoding:
Text File  |  2000-04-09  |  705 b   |  27 lines

  1. Rem * Title  : Load a 3D Sound
  2. Rem * Author : DBS-MB
  3. Rem * Date   : 1st August 99
  4. rem ================================================
  5. rem DARK BASIC EXAMPLE PROGRAM 7
  6. rem ================================================
  7. rem This program will load and play a 3d wav sound  
  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 3dsound "sound.wav",1
  15.  
  16. rem This will position the sound behind you and to the right
  17. position sound 1,100,0,-100
  18.  
  19. rem Play sound number
  20. play sound 1
  21.  
  22. rem Will wait for you to press any key
  23. suspend for key
  24.  
  25. rem End the program
  26. end
  27.