I know this may be knit-picking a little, but thought I would ask the question anyway.
Im trying to get my Context Menus sorted once and for all, as they have been a long standing TODO, as they are not the easiest of things to fully understand / implement.
I have got them working quite well, but am just trying to fine tune them a little. I have selected the "Hide windows items on file context menu (shift overrides)" from preferences, and have put all the windows context menu items in a seperate sub-menu for the time being, with the command Filetype CONTEXTMENU CONTEXTOPTIONS=windowsonly (although I can not see the windowsonly option documented, its something I picked up from these forums)
Say for arguments sake, I have the following context menu structure
New
Rename
Cut
Copy
Delete
Now, say I want to put the WinRAR "Extract Here" function after the "Rename" menu item, I have managed to achieve that with the following command ;
FileType CONTEXTFORCE CONTEXTMENU={B41DB860-8EE4-11D2-9906-E49FADC173CA} VERB=WinRAR_ExtractHere
(Although I get "Extract Here" and "Extract to {filename}" (these are the only two options I have selected in WinRAR Context Menu configuation), I would of expected just to have the "Extract Here" as specified by the verb "WinRAR_ExtractHere") VERB was obtained by the command "contextmenu showcmds"
This got me on to thinking that it would be nice if I could define exactly where I want context menu's defined by file type groups to be placed.
Say for example I have a file type group "Pictures", and context menu items defined as "Convert to JPEG" and "Convert to PNG", whenever I click on a file (say .jpg) that falls into the file type group definition, the context menus for this file type are placed at the top of my current context menus. e.g. I would end up with the following ;
Convert to JPEG
Convert to PNG
New
Rename
Cut
Copy
Delete
It would be nice if there was a command like FileType ContextForce ContextMenuFileType="Pictures", so that I could specify where in the context menu I want the items from File Type Groups context menus to be placed.
Is there any possibility to achieve this ?
Again, MANY thanks for any help.