sTu_Deimus wrote:Yep, works a treat! Thanks
One question though... the only way I seem to be able to access it is via File-OpenWith.
The ContextSensetiveMenu:OpenWith doesn't show it (presume this one is windows generated).
Can I have such an entry appear on the root of the ContextSensetiveMenu ?

Perhaps the fact that its an open-slather wildcard PFA makes it more suitable for this.
Stu.
Just to add few more points apart from what TheQwerty said. You can already use a small script which will open a custom menu on double-click. For example you can paste the below script in a text file inside XY's scripts folder and name it anything; say "OpenVIDs.xys".
Code: Select all
"Open Video with &Media player"
OpenWith "C:\Program Files\K-Lite Codec Pack\Media Player Classic\mplayerc.exe", s;
"Search &IMDB database"
Open("http://www.imdb.com/find?s=tt&q=<curbase>");
You can change the path to your media player above accordingly.
Now put the below line in "Tools | List management | Portable file associations":
Code: Select all
"Open Videos" wmv;avi;mpg>::load "OpenVIDs"
Ofcourse you can add or remove extensions above and double clicking on those extensions will pop-up your created menu, in this case Open video with Media player and Search IMDB database.