home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / disk / cdrom / jukebox / bwd.jb < prev    next >
Text File  |  1995-02-27  |  249b  |  16 lines

  1. /* skip back to previous track */
  2. /* (c) copyright 1992,93 by F.J. Reichert */
  3.  
  4. options results;
  5. current track;
  6. if result ~= 0 then do;
  7.     toset = result - 1;
  8.     if toset > 0 then do
  9.         set track toset;
  10.     end;
  11.     else do
  12.         set track 1;
  13.     end;
  14. end;
  15. exit(0);    
  16.