Hi Eugene,
 
I thought you already had JavaHelp Integration.
 
It is not available on community.
 
It is a small add-on product. Our sales dept will be happy to make an offer.
 
Thanks and regards,
 
Janak
-----Original Message-----
From: Eugene Coelho [mailto:[EMAIL PROTECTED]
Sent: Monday, August 21, 2006 5:09 PM
To: Janak Mulani
Subject: RE: [ULC-developer] JavaHelp

Hi,
I am not able to find the link for JavaHelp integration (i have searched  ULC mailing list/ ULC community  web site ).
 
Could you post the link for it. 
 
Thanks and Regards,
Eugene
 


Janak Mulani <[EMAIL PROTECTED]> wrote:
Hi Eugene,

You have to provide the following user arguments to your ULC App that is
using JavaHelp integration

1. "help-set-url-provider" = "url"

2. Suppose your .hs helpfiles are in the dir /ulcapp/helpfiles then
specify the following url prefix:


3. "help-set-url-prefix" = "http://www.mycompany.com/ulcapp/helpfiles"

4. .hs file at top level in a jar which is on the classpath of your ULC App
should work

In you app do the following to set up help:

String helpSetURLProvider =
ClientContext.getUserParameter("help-set-url-provider");
if ("URL".equalsIgnoreCase(helpSetURLProvider)) {
String helpSetURLPrefix =
ClientContext.getUserParameter("help-set-url-prefix");
animalsHelpSetURL = new URL(helpSetURLPrefix + "/Animals.hs");
ULCHelpSet helpSet = new ULCHelpSet(animalsHelpSetURL);
}

I hope this helps.

Thanks and regards,

Janak

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Eugene Coelho
Sent: Friday, August 18, 2006 10:55 AM
To: UlC Devleoper list
Subject: [ULC-developer] JavaHelp


Hi,
How can i use JavaHelp with ulc to display the .hs file(present in jar file)
from a ulc application running as an applet.
Found a small snippet on mailing list but i dont have an idea how to use it

String helpSetURLProvider =
ClientContext.getUserParameter("help-set-url-provider");
if ("URL".equalsIgnoreCase(helpSetURLProvider)) {
String helpSetURLPrefix =
ClientContext.getUserParameter("help-set-url-prefix");

try {
animalsHelpSetURL = new URL(helpSetURLPrefix +
"/animals/Animals.hs");
}


Thanks,
Gene



Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail Beta.

_______________________________________________
ULC-developer mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/ulc-developer


Get your email and more, right on the new Yahoo.com

Reply via email to