Lotusscript Class in Java

This is more a Java question than anything.

I have a progress bar class I am using in my lotusscripts. This class is stored in the script library.

To import and use this in lotusscript I just put “Use ‘ProgressBar Class’”.

How would I do it in Java?

Subject: Lotusscript Class in Java

  • I think you have to rewrite it using Java, and put that into a different script library. I’m not aware of any way to “use” a LotusScript library in Java code…

Subject: RE: Lotusscript Class in Java

You can’t use a “script library” outside of the Designer, but if it helps, you can:

export the source,

compile it,

create a jar file from it, and

include the jar file in the classpath of the Java program.

dgg