Guest User

Untitled

a guest
Mar 22nd, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var itunes = Application("iTunes");
  2. //console.log(itunes.currentTrack.file());
  3.  
  4. var track = itunes.currentTrack;
  5.  
  6. var vlc = Application("VLC");
  7. vlc.open(track.location());
  8.  
  9. track.playedCount = track.playedCount() + 1;
  10. //track.unplayed = false;
  11.  
  12. //Application("Finder").delete(track.location());
  13. //itunes.delete(track);
  14. itunes.stop();
  15.  
  16. //itunes.updatePodcast;
Add Comment
Please, Sign In to add comment