Answers...

to commonly asked questions.

How to open 2 VLC windows at the same time on a Mac.

I want to run 2 instances of VLC. How do I do it?
___________


Use apple script editor and save the following command as a script:


on run
do shell script "open -n /Applications/VLC.app"
tell application "VLC" to activate
end run

on open theFiles
repeat with theFile in theFiles
do shell script "open -na /Applications/VLC.app " & quote & (POSIX path of theFile) & quote
end repeat
tell application "VLC" to activate
end open
This image is a theme.plist hack