That is true...but if you look at QuickTime for example you can see that it defaults to allow multiple video windows to be opened at the same time. Just drag a video on the .app icon and it will open a new window for each video. This kind of behaviour would be of great use for VLC as well.Just for your interest: This option isn't available on Macs for a reason, as running the same multiple times is strongly against Apple's usability guidelines.
Code: Select all
on run
do shell script "open -n /Applications/VLC.app"
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
end open
I have the same issue. If I go to "get info" and change the default app, it reverts back to quicktime (for avi files). It won't work for the script. Any help?Does anybody know how I can get this little script .app to be able to open all mp3's (for example) by default? I can set it to open individual files by default, no problem, but I cannot get it to stay when I click "Change All".
I am running OSX 10.7.3
Cheers,
Vega
We eagerly await your patch, if this is so uber important.so cut the crap please.
This is not a bug, its intended behaviour. You need to save a playlist if you want to preserve a certain set of files. And the media library is an auto-saving playlist, so its exactly what you ask for. Just look at the documentation before complaining...Also, it would be great to finally remove the BUG - playlist is emptied every time you just quit and get back to VLC. Why??? There's no sane reason for that!
Just look at the documentation before complaining...
Code: Select all
tell application "System Events"
set processlist to (unix id of every process whose name begins with "VLC")
repeat with someunix in processlist
do shell script "kill -KILL " & someunix
end repeat
end tell
Return to “VLC media player for macOS Troubleshooting”
Users browsing this forum: No registered users and 9 guests