include the class files of the JMF in your jar file as well;
following these steps:jar -xvf JMF.jar(the file contains JMF), you will see a folder contains "com...." , or something like thatsame your class file is myapplets.class, no pachkage for that:then jar -cf myapplets.jar com myapplets.classif your have a package, "mypackage"then jar -cf myapplets.jar com mypackage.how in your html code;codebase = "."
class = "mypackage.class"
archive = "myapplets.jar"