home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / msdos / animutil / fastgfx / fg303d / exbas.arj / FGDOC / EXAMPLES / BASIC / 15-08.BAS < prev    next >
Encoding:
BASIC Source File  |  1993-09-30  |  284 b   |  17 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. FGmusicb "T150 L8 EDCDEEE P DDD P EGG P EDCDEEE L16 P L8 EDDEDC$", 1
  4. FGwaitkey
  5.  
  6. FGsuspend
  7. PRINT "Music suspended.  Press any key to resume."
  8. FGwaitkey
  9.  
  10. FGresume
  11. PRINT "Music resumed."
  12. WHILE FGplaying = 1
  13. WEND
  14. PRINT "Music finished."
  15.  
  16. END
  17.