Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
75 views

Embedding .avi in JavaHelp?

I'm creating some help content for an application (built on NetBeans), and thought it would be useful in some cases to be able do show a tutorial video within the JavaHelp or have a link to open a ...
2
votes
1answer
37 views

Can Java's Desktop.browse provide an HTML Target in order to reuse a browser window?

I'm moving an application from using javax.help's browser to the user's desktop web browser, but I'm wondering how to prevent the user from winding up with many windows/tabs open as they click to ...
2
votes
1answer
105 views

where is JSR-97 (JavaHelp)

Since the Sun->Oracle transition, the search for java-documentation has been a mess. I'm looking to find the official JSR-97 specs: http://jcp.org/aboutJava/communityprocess/final/jsr097/index.html ...
2
votes
2answers
250 views

Select JavaHelp topic in TOC when using setCurrentID

When I use HelpBroker.setCurrentID("[some help id]"), JavaHelp correctly shows the page I want but the associated topic is not automatically selected/highlighted in the table of contents. This makes ...
1
vote
0answers
59 views

java help file is not getting(.hs)

I created one class (javahelp) in my project, for getting java help file as when I'm clicking a help content (menu item). I updated installed javahelp-2.0_05 in directory C:\Program ...
1
vote
2answers
105 views

findHelpSet return a null URL while integrating JavaHelp system inside my application using Eclipse

I'm trying to include JavaHelp inside my application developed under Eclipse. I did the following things: Download and extract the JavaHelp library in a sub-folder of my project workspace. Added ...
1
vote
1answer
132 views

Unable to parse JavaHelp's toc.xml

I wrote an XML parser for JavaHelp's toc.xml file in order to intercept some attributes I use in the tocitem tag that are ignored by JavaHelp. Here's what toc.xml looks like: <?xml version='1.0' ...
1
vote
1answer
339 views

Using JavaHelp with a web app

We have a system where our front end is either a Rich Client application or a web interface into the back end. We are working on adding context-sensitive help to our system, but we need to use the ...
1
vote
1answer
189 views

How can I change the Javahelp font?

Javahelp is the Java based help system that can easily be integrated in a Java application. The documentation does not give any information about it. On the web, many people state that it is not ...
1
vote
2answers
266 views

Changing “Favorites” Tooltip in Java Help

In my helpset file, I'm declaring a favorites view, using <view> <name>Lesezeichen</name> <label>Lesezeichen</label> ...
0
votes
0answers
17 views

JHelpDev for create helpset file

Am using following program for create java help set file in net beans ide 6.9.1 using JHelpDev.I move the .hs file into build/classes of the project.when i execute this program am not get the .hs file ...
0
votes
0answers
25 views

Java - JavaHelp hangs when printing a page

I have created a Java Swing application, and a help guide for it using JavaHelp latest release(2.0_05). When i run the help guide from my application and view any page in the help window i can simply ...
0
votes
2answers
32 views

Is there a way to import HTML into JavaHelp?

I'm trying to automate JavaHelp generation from a book (HTML) already on the web to bundle as a NetBeans module. Is there a way to automate the conversion into JavaHelp format?
0
votes
0answers
16 views

How to use OracleHelp in j2ee aaplication

I want to us Oracle Help in my web based application(J2EE Application for context sensitive help) .I am using Jboss as my deployment enviornment. I am quite new to Oracle Help .Please Guide me How I ...
0
votes
0answers
128 views

How to transform DocBook XML into PDF in JavaHelp format

I have used the below command to generate Doc book xml to html in java help format.I have used SAXON as a XSLT processor java com.icl.saxon.StyleSheet example.xml ...
0
votes
0answers
30 views

Integrating JavaHelp With Web application

I am quite new to Java Help. I dont know the use of javax.help.ServletHelpBroker(only basic from google). Please tell me how to integrate JavaHelp With Web application for Online Help content.
0
votes
0answers
11 views

Java Help Search generates a TMAP file, what is it?

I am maintaining a program that uses Java Help Search. It generates a TMAP file that I can't open in emacs or any other application. It somehow contains some text that I don't want released to the ...
0
votes
0answers
44 views

Problem with JavaHelp search highlighting

I have faced following problem. I'm creating JavaHelp search index on Soalris using the following command: java -cp /home/akucher/jhall.jar com.sun.java.help.search.Indexer help/ after that when ...
0
votes
1answer
111 views

JavaHelp Frame icon

How can I set the JFrame Icon (top left of the outer JFrame) of the JavaHelp Window. I know how to set the category and topic Images (toc.xml), but I don't succceed in setting the JFrame Icon. I ...
0
votes
1answer
214 views

how to debug ClassLoader not finding a file in Java

I'm trying to integrate JavaHelp system inside my project developped using Eclipse. I have the following code extracted from an example: private HelpSet getHelpSet(String helpsetfile) { ...
0
votes
1answer
76 views

Automatic Generation of a JavaHelp Index File

I just started working with the JavaHelp package. I have done some basic modifying of the Table of Contents and such with no problems. My issue arises in that I have created various new help files ...
0
votes
2answers
184 views

JavaHelp system help

I'm creating a JavaHelp for our project and I'm having some issues. JavaHelp uses the following files as a convention : helpset file: MyHelpSet.hs index file: index.xml TOC file (table of ...
0
votes
2answers
1k views

How do I include JavaHelp with my Eclipse project?

I am writing some applications that require to have a Help Contents system tied to it. I came across JavaHelp which seems perfect for what I need. The issue I am having is that when you download ...