The above mentioned Auto Hotkey method for turning off VLC's pop-up error messages is Windows specific. For those of us who are running OS X -- quite likely, inasmuch as this is the OS X troubleshooting area -- there's a platform-appropriate workaround. It's inelegant and unworthy of respect, but the developers seem to be having trouble reproducing the situation whereby the proper way of turning off pop-ups doesn't work for everyone.
In Terminal.app, type (or copy-and-paste from here):
- Code: Select all
mv /Applications/VLC.app/Contents/Resources/English.lproj/InteractionErrorPanel.nib/keyedobjects.nib keyedobjects-original.nib
This changes the name of the file which VLC references in order to display the error window. Since the application can't find the file
keyedobjects.nib, and since it will ignore the file called
keyedobjects-original.nib, the necessary data will be unavailable. The pop-up error window will not appear.
The Messages window is unaffected by this change, so if you want to see VLC's real-time log, it can still be invoked from the Window tab of the menu bar (or by typing shift-command-m).
To revert to the application's original state, reverse the name change:
- Code: Select all
mv /Applications/VLC.app/Contents/Resources/English.lproj/InteractionErrorPanel.nib/keyedobjects-original.nib keyedobjects.nib
Note that these commands assume VLC is in your Applications directory and also that it is not nested in a sub-directory inside of Applications. Change as needed. Note also that there are other means to the same end besides my method of renaming the file. Archiving it or moving it would work just as well.