Then we'll contact pi and ask him to rewrite his plugin a bit.e.g. because there may be actually a context menu interface
Do you really care for OTHER programs using plugins made for YOUR program?with other programs which use the plugin
Moderators: Hacker, petermad, Stefan2, white
Then we'll contact pi and ask him to rewrite his plugin a bit.e.g. because there may be actually a context menu interface
Do you really care for OTHER programs using plugins made for YOUR program?with other programs which use the plugin
Don't listen to Mr. Ghisler.I recommend that you do NOT use hooks and other dirty tricks to put your menu items into Total Commander. Why? While this may work perfectly with the current version of TC, it's possible that it will not work with future versions (e.g. because there may be actually a context menu interface), or with other programs which use the plugin...
The original context menu can be extened this way, thus keeping the existing menu items. Also, some check can be made to show custom menu only when panel presenting FS plug is activated.I have no experience with Hooks, but won't the other FSPlugins show the new items too in context menu?
witch means that it doesn't work afterwards.* hook is only called when plugin is loaded first
So, you say that , it stops working in your own plugin, but continues to run for others ?* hook is called on every other file system plugin, too
Code: Select all
#IfWinActive ahk_class TTOTAL_CMD
RButton::
<AHK code to get currently selected panel>
if ( tcPanel != "myPluginName")
{
;send this click, not for my plugin
Click
return
}
else ShowMyMenu()
return
#IfWinActive
witch doesn't appear to me as connected to outer Properties menu.@lefteous: THAT'S IT! But it seems to be a wish list rather than an existing way to do it... 8-(