I have an RCP plug-in and I have configured the help system to run within this plug-in. I can access it from the Help menu.
Now I want to launch the \"Dynamic Help\
Solved this by using the WorkbenchAdvisor implementation:
@Override public void postStartup() { IWorkbenchHelpSystem help = PlatformUI.getWorkbench().getHelpSystem(); help.displayDynamicHelp(); }
The Startup extension proved futile.