applescript

Applescripts to control VLC

I wanted to control my VLC player via Quicksilver just like I am able to do with iTunes, but I was unable to find anything online so I decided to write my own. Here are a few code snippets that you can use to control iTunes.

I will go over how to use them with Quicksilver later.

Open Multiple Files

# get the music we want to load
set Music to choose file with multiple selections allowed without invisibles
 
# open the selected music
tell application "VLC" to open Music
 
# start from the beginning
tell application "VLC" to next

recent comments