SEO Software

    

Closed Thread
Results 1 to 7 of 7

Thread: Embeding Java applet in HTML

  1. #1

    Default Embeding Java applet in HTML

    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?


  2. #2

    Default

    PHP 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
    Never had problems with this snippet
    Making money is an art ...

  3. #3

    Default

    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>

  4. #4

    Default

    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>

  5. #5

    Arrow

    Quote Originally Posted by nikon View Post
    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?
    use same code as use for html add only param for passing value it at running time.

  6. #6

    Default

    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>

  7. #7

    Default

    If you are using dreamweaver then you can go into insert menu and add applet tag.

Closed Thread

Similar Threads

  1. PSD to HTML
    By nikon in forum HTML & CSS Help
    Replies: 17
    Last Post: 09-14-2010, 09:51 PM
  2. Embeding applet in the HTML
    By nikon in forum HTML & CSS Help
    Replies: 7
    Last Post: 06-22-2009, 05:07 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts