Hello
I am trying to embed java applets in the html source but showing an error that appleet is not initialized. I am able to use same applet on local machine. What will be the problem?
Free Templates
Targeted Traffic
SEO Services
Web Scripts
Site Builder
Hello
I am trying to embed java applets in the html source but showing an error that appleet is not initialized. I am able to use same applet on local machine. What will be the problem?
Never had problems with this snippetPHP Code:<applet code=NameOfApplet.class name=NameOfApplet archive=NameOfApplet.jar
width=300 height=300>
<param name="bgcolor" value="ffffff">
<param name="fontcolor" value="000000">
Your browser is not Java enabled.
</applet>
![]()
Making money is an art ...
the code to initialize the the applet in java is :
<applet code=NameOfApplet.class name=NameOfApplet width=300 height=300>
<param name="bgcolor" value="ff0000">
<param name="fontcolor" value="8">
</applet>
this can be passoble through html by the <embeded> tag
applet code=NameOfApplet.class name=Applet name archive=Appletname.jar
width=500 height=200>
<param name="bgcolor" value="339900">
<param name="fontcolor" value="000000">
</applet>
To initialize the applet in java you should write below code i think it will solve your problem
<applet code=Applet.class name=Applet width=300 height=300>
<param name="bgcolor" value="ff0000">
<param name="fontcolor" value="8">
</applet>
If you are using dreamweaver then you can go into insert menu and add applet tag.
Bookmarks