home *** CD-ROM | disk | FTP | other *** search
- var app = WScript.CreateObject( "Juke.Application" );
- if( app == null ) {
- WScript.Echo( "Juke is not installed" );
- WScript.Quit();
- }
-
- var playlist = app.Playlist;
- playlist.RemoveAll();
- playlist.Add( "P:\\Sound\\Files\\MP3\\Songs\\Mad World.mp3" );
-
- app.Player.Stop();
- app.Player.Play();
-
- app.About();
-