run multiple instances of VLC in MAC OS / open multiple video files in separate vlc window in mac o
this video shows how to run multiple files in separate windows in mac os at the same time (multiple instances of vlc in mac os x) script as per the video: 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 video shows how to run multiple files in separate windows in mac os at the same time (multiple instances of vlc in mac os x) script as per the video: 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