After a few hours of frustration, I've finally got external help files (launched from a toolbar), and preview in web browser (also toolbar buttons) setup and working perfectly.
The way I did it was to use the Console plugin and I wrote a macro that launches processes. For the experts, this is probably no big deal, but for us beginners, here is how I did it..
runCommandInConsole(view,"System","hh \"I:\\Reference\\[Web]\\php_manual_en.chm\""); view.getDockableWindowManager().toggleDockableWindow("console");
This loads the HTML help compiler with the php manual.
And here is how to do preview in browser:
runCommandInConsole(view,"System","\"C:\\Program Files\\MozillaFirebird\\MozillaFirebird\" \"" + buffer.getPath() + "\""); view.getDockableWindowManager().toggleDockableWindow("console");
OS is windows xp pro. I've also created some toolbar icons (email me if interested) for jEdit which can be seen by clicking here: http://www.funklabs.org/screenshots/jedit_3.jpg
It should be pointed out to newbies that just using a macro 'exec' will only half work because exec waits for the process to terminate before returning control to jEdit (atleast it did for me) and thus you gotta close the browser to get the display back and jEdit ready for more business. the console plugin was the only way I could get this to work as it should (just launching the process and not waiting).
I love the program. I am a long time user of ultraedit but no more. it's jedit forever for me If anyone is interested I can create a zip archive containing all the graphics and .bsh macro scripts that I use so that you can also have nifty features as found in UltraEdit
Thanks.- grymmjack (mailto:grymmz0r@yahoo.com)