• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

Java 3d applet and HTML

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I'm trying to pass an .obj file name into a java 3d applet but it just doesn't want to work for me! The code in the applet is as follows:
/**********************************************/
String ModelName;
...
...
...
public void init() {
ModelName = getParameter("MODELNAME");
if (filename == null) {
try {
URL path = getCodeBase();
filename = new URL(path.toString() + ModelName);
}
catch (MalformedURLException e) {
System.err.println(e);
System.exit(1);
}
}
/**********************************************/
The HTML is as follows:
/***********************************************/
<Object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" WIDTH = 400 HEIGHT = 400 ALIGN = "center" >
<PARAM NAME = ModelName VALUE = "Model.obj" >
<EMBED type="application/x-java-applet;version=1.2.2" CODE = "Model.class" WIDTH = 400 HEIGHT = 400 ALIGN = "center" scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html"></embed><NOEMBED>
</NOEMBED>
</Object>
/***********************************************/
Any suggestions would be greatly appreciated - thanks
 
Bartender
Posts: 29139
215
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Hel Bel"
We'd like to welcome you to the JavaRanch, but we have a naming policy here designed to help promote the fiction that we're all a bunch of cultured professional-type folks here, despite all evidence to the contrary. Please visit our page at http://www.javaranch.com/name.jsp for more information.
 
reply
    Bookmark Topic Watch Topic
  • New Topic