Questions tagged [javahelp]

JavaHelp is an online help system for Java applications. Note: this tag should NOT be used to ask for general help with Java code if it doesn't relate to this system.

JavaHelp is an online help system for Java applications. It is specified by JCR 97 and a reference implementation is available for download at Java.net.

Oracle Help is a similar help system for Java.

55 questions
1
vote
2 answers

Instantiate an ArrayList of Circles

so the question basically says to Use a for loop to add 10 Circles to the ArrayList each with a random radius in the range of 2-5 and Print a table of all of the Circles in the ArrayList. You can use System.out.println(String.format("%.3f",…
1
vote
0 answers

How can I open javahelp from javafx?

I have used JavaHelp with swing and I could do try { URL helpURL = this.getClass().getResource("/help/help.hs"); HelpSet helpset = new HelpSet(null, helpURL); HelpBroker browser = helpset.createHelpBroker(); …
Kevin
  • 41
  • 3
1
vote
2 answers

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 could do it programmatically, by looking for the…
Bruno Ranschaert
  • 7,428
  • 5
  • 36
  • 46
1
vote
1 answer

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 possible, that the help browser always uses a built-in…
Bruno Ranschaert
  • 7,428
  • 5
  • 36
  • 46
1
vote
2 answers

Changing "Favorites" Tooltip in Java Help

In my helpset file, I'm declaring a favorites view, using Lesezeichen javax.help.FavoritesView This automatically adds an appropriate button to the toolbar…
Ilja Preuß
  • 2,421
  • 17
  • 15
1
vote
0 answers

Runtime Error in JavaHelp

This is an issue that I have been running into for months and have been unable to solve it. We have continued to develop our JavaHelp; however, we are at a point where this needs to be fixed and I am out of ideas. What this is: A Java…
Metal Wing
  • 1,065
  • 2
  • 17
  • 40
1
vote
1 answer

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 same base configuration files - i.e. the…
aperkins
  • 12,914
  • 4
  • 29
  • 34
1
vote
1 answer

Java newInstance call for JavaHelp crashing with createUI error on second and subsequent calls

In my app I am dynamically loading the jhall file for JavaHelp, so my code uses reflection. The weird thing is that it works fine for the first call, and my JavaHelp screens show up fine, with all the navigation. If I close my JavaHelp screen, and…
Paul Morrison
  • 1,694
  • 3
  • 20
  • 35
1
vote
0 answers

Disable main window but show module

My goal is to launch a NetBeans platform application without showing the main window. I know its possible and have done so succeessfully by following this tutorial: http://java.dzone.com/news/how-create-a-consoleserver-app However, I also want to…
Metal Wing
  • 1,065
  • 2
  • 17
  • 40
0
votes
2 answers

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?
javydreamercsw
  • 5,363
  • 13
  • 61
  • 106
0
votes
0 answers

Why isn't some components on JFoenix not working in scene builder?

I just started learning java gui and I chose to learn javafx. I use intellij for my java program, I have java jdk 20.0.1 and open javafx sdk 20.0.1 also scenebuilder 20.0.0. The Jfoenix jar I downloaded was 9.0.10 jar. When I downloaded Jfoenix and…
0
votes
0 answers

How do I make a hashtag a different color than the rest of the text in sketchware?

How do I make a hashtag a different color than the rest of the text in sketchware How do I make a hashtag a different color than the rest of the text in sketchware I want to make the hashtag a different color than the rest of the people in…
0
votes
1 answer

Discord bot not sending messages

I am a beginner to using discord.js and cannot figure out why my bot isn't replying with a message whenever I send one on the server it's on. Discord says it's online and "Logged in!" comes up in the console when I run it, so client.on("ready") is…
cressa
  • 1
0
votes
1 answer

For maven dependencies from local repository, Eclipse can't open Javadoc in the browser

When from within Eclipse I try to open Javadoc in a browser, using the button "Open attached Javadoc in a browser" in the pop-up Javadoc window, for example, for JAssert that is in the local M2E repository, the browser opens an empty page. The URL,…
m. vokhm
  • 669
  • 1
  • 6
  • 24
0
votes
1 answer

How to loop this program 3x for my Salary Calculator Java

So I’m trying to write a Java program that displays 3 employees gross pay factoring in overtime pay. I was able to make a program with a while loop but am confused as to get this to print for each employee. I want the output to look like “Pay for…
Rose
  • 11