@@ -469,7 +469,7 @@ Notepad++ Object
469469.. method :: notepad.runMenuCommand(menuName, menuOption[, refreshCache]) -> bool
470470
471471 Runs a command from the menus.
472- For built-in menus use notepad.menuCommand(), for non built-in menus (e.g. TextFX and macros you've defined ),
472+ For most built-in menus use notepad.menuCommand(), but for menus that are created dynamically (e.g. the macro menu ),
473473 use ``notepad.runMenuCommand(menuName, menuOption) ``. For other plugin commands (in the plugin menu),
474474 use ``notepad.runPluginCommand(pluginName, menuOption)_ ``
475475
@@ -483,15 +483,15 @@ Notepad++ Object
483483
484484 e.g.::
485485
486- notepad.runMenuCommand('TextFX Edit', 'Delete Blank Lines' )
486+ notepad.runMenuCommand("MIME Tools", "About" )
487487
488488
489489.. method :: notepad.runPluginCommand(pluginName, menuOption[, refreshCache])
490490
491491 Runs a command from the plugin menu.
492492 Use to run direct commands from the Plugins menu.
493- To call TextFX or other menu functions, either use ``notepad.menuCommand(menuCommand)_ `` (for Notepad++ menu commands) ,
494- or ``notepad.runMenuCommand(menuName, menuOption)_ `` for TextFX or non standard menus (such as macro names ).
493+ To call other menu functions, either use ``notepad.menuCommand(menuCommand)_ ``,
494+ or ``notepad.runMenuCommand(menuName, menuOption)_ `` for menus that are created dynamically (e.g. the macro menu ).
495495
496496 Note that menuOption can be a submenu in a plugin's menu. So::
497497
0 commit comments