How to create a file type specific OpenWith context menu
Posted: 06 Apr 2008 16:34
[from v7.00.0009 onwards]
It took me 3 minutes to create something which will save me hours and hours from now on! Because now, when I dbl-click an Image file (or press Enter on it), I get a little popup menu that allows me to choose the app to open the image with!
Here's how:
Step 1
Create a new script file called OpenImages.xys in a subfolder "Scripts" of your application data path. In my case this would be E:\XY\XYplorer\Scripts\.
Paste this into the file and save it:
Step 2
Open menu Tools | Customize File Associations... and create a new one looking like this:
That's it! Provided you have the applications that are referred to in OpenImages.xys, it should work for you just as it works for me.
It took me 3 minutes to create something which will save me hours and hours from now on! Because now, when I dbl-click an Image file (or press Enter on it), I get a little popup menu that allows me to choose the app to open the image with!
Step 1
Create a new script file called OpenImages.xys in a subfolder "Scripts" of your application data path. In my case this would be E:\XY\XYplorer\Scripts\.
Paste this into the file and save it:
Code: Select all
"Open Image(s) with &ACDSee"
OpenWith ACDSee32, m;
"Open Image(s) with &ImageReady"
OpenWith ImageReady;
"Open Image(s) with &Photoshop"
OpenWith Photoshop;
-
"Cancel"Open menu Tools | Customize File Associations... and create a new one looking like this:
Code: Select all
jpg;png;gif>::load <xydata>\Scripts\OpenImages.xys