home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / anim / exam01.dba next >
Encoding:
Text File  |  2000-04-09  |  843 b   |  40 lines

  1. Rem * Title  : Load and Play AVI
  2. Rem * Author : DBS-MB
  3. Rem * Date   : 1st August 99
  4. rem ==========================================
  5. rem DARK BASIC AVI ANIMATION EXAMPLE PROGRAM 1
  6. rem ==========================================
  7. rem This program will load and play a AVI file
  8. rem ------------------------------------------
  9.  
  10. rem Specify your AVI filename and an animation number
  11. load animation "avi\demo1.avi",1
  12.  
  13. rem Place your AVI near the top left corner of the screen
  14. place animation 1,50,50,310,170
  15.  
  16. rem Will play your AVI animation
  17. play animation 1
  18.  
  19. rem Wait a while
  20. sleep 100
  21.  
  22. rem Pause AVI
  23. pause animation 1
  24.  
  25. rem Will wait for you to press any key
  26. suspend for key
  27.  
  28. rem Resume AVI
  29. resume animation 1
  30.  
  31. rem Wait some more
  32. sleep 2000
  33.  
  34. rem Delete the animation
  35. delete animation 1
  36.  
  37. rem End the program
  38. end
  39.  
  40.