>> If you have the time, I encourage you to download the latest official
>> Jmol release, v8.0.
> ...
> In http://jmol.sourceforge.net/demo/ you have
>
>         JmolApplet.jar          11-Oct-2003 07:50   298k
>
> So can I delete the rest of the jar files?  Or do they belong to some
> other program?
The version you are running *did* require all those other .jar files.
More recent versions of Jmol only require JmolApplet.jar

> Or does something else have to change?
Unfortunately, a few other things changed as well.

In the HTML files you need to change a couple of statements within the
<applet ...> tag

code="org.openscience.jmol.applet.JmolApplet"
  becomes
code="JmolApplet"

archive="../applet/jmol-applet.jar,../applet/vecmath.1.1-1.12.jar"
  becomes
archive="../applet/JmolApplet.jar"

<param name="model" value={some file}>
  becomes
<param name="load"  value={some file}>

<param name="zoom" value="0.8">
  can be deleted ...
  let me know if the size is a problem and I will tell you how to fix it

<param name="atomTypes" value="../applet/AtomTypes">
  can be deleted

When you are finished, your html applet tag should look like this:

<applet code="JmolApplet" archive="../applet/JmolApplet.jar"
        width="384" height="384">
  <param name="load" value="../struk.xmol/b31.xyz">
</applet>



> Anyway, jmol is a great tool
Glad you like it!



Miguel





-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Jmol-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to