home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 July / PCWorld_1999-07_cd.bin / software / TemaCD / Juke / Test.js_ / Test
Encoding:
Text File  |  1998-12-29  |  317 b   |  15 lines

  1. var app = WScript.CreateObject( "Juke.Application" );
  2. if( app == null ) {
  3.     WScript.Echo( "Juke is not installed" );
  4.     WScript.Quit();
  5. }
  6.  
  7. var playlist = app.Playlist;
  8. playlist.RemoveAll();
  9. playlist.Add( "P:\\Sound\\Files\\MP3\\Songs\\Mad World.mp3" );
  10.  
  11. app.Player.Stop();
  12. app.Player.Play();
  13.  
  14. app.About();
  15.