Applet won't run in Internet Explorer

I am having problems running applets that I create. They don't run in Internet Explorer. Other applets will run in the browser but it seems to use the Microsoft VM, not the JVM from Sun. The Mozilla Firefox browser will run all applets using the JVM from Sun.

to api00
If you cannot see an entry in IE Tools menu named Sun Java Console and open it , then do the following.
1.Open Windows' Control Panel and look for an entry "Java Plug-in".
- If it's not there, go here http://java.com/en/index.jsp and click the "Get It Now" button to install the Java Plug-in.
- If it's there, click it, and then the Browser tab. Make sure that "Internet Explorer" is checked, then close all instances of IE. Go to this page and try one of the applets: http://java.sun.com/j2se/1.4.2/docs/relnotes/demos.html
2. If that doesn't resolve the problem, remove ALL Sun Java stuff that you can find - check directories and the Registry - and do a clean install of Java.
to twinkietwin
Question 1: It appears that you typed the error text in your message #8, because there are capitalization and spelling problems that do not exactly match the errors that Java produces. Is this the case? If so please cut and paste the verbatim text of the errors from the window that appears when you click on the "More Details" button of the "Error - Java General Exception" box. (The EXACT and TOTAL error test is important.)
It appears that the applet is attempting to acquire the value of some variables from the HTML code that calls the applet, but for some reason it cannot find the HTML file named "example1.htm" that contains the variables. One possibility is that there is a file on your computer named either example1.htm or example1.html that is being found first. Check your machine for files with one of these names; if found, temporarily rename it to something else and try the Sun BarChart applet from the demo page again.

Similar Messages

  • AppletViewer won't run an applet that runs in Internet Explorer?? Whats up?

    I have an applet that I created. It runs in Internet Explorer perfectly. I mean perfectly, every single time, without a problem.
    But, if I try to run appletviewer with this applet, it gives all kinds of exception messages: Ever seen this before?
    Thanks!

    Why not just paste the applet code. I know it is simple, but here it is. I am new to java so you may see some weird code for sure.... It is suppose to countdown to a given date/time... Just something simple to help me learn Java.
    If anyone else has time and wants to compile it and try to get it to run as an Active Desktop Item that would be super cool
    Thanks!!!!
    Here is the html page code:
    <HTML>
    <HEAD>
    <TITLE>Countdown Applet</TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE="PKVTimer.class" HEIGHT=30, WIDTH=120>
         <param name=BackColorRed value="0">
         <param name=BackColorGreen value="128">
         <param name=BackColorBlue value="0">
         <param name=ForeColorRed value="255">
         <param name=ForeColorGreen value="255">
         <param name=ForeColorBlue value="255">
         <param name=Year value="2003">
         <param name=Month value="9">
         <param name=Day value="27">
         <param name=Hour value="6">
         <param name=Minute value="30">
    </APPLET>
    </BODY>
    </HTML>
    Here is the code:
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    class TimeInMillis extends GregorianCalendar {
         public long getMillisForDate(Calendar calIn) {
              getInstance();
              setTime(calIn.getTime());
              long now = getTimeInMillis();
              return now;
    public class PKVTimer extends Applet implements Runnable
         private Thread thThread;
         private Label tfCountdown;
         private Panel P1;
         private Calendar clCalendar, clHuntCalendar;
         private String sDays, sTime, sHrs, sMins, sSecs;
         private int iYear, iMonth, iDay, iHour, iMinute;
         public void init()     
              String cRed = getParameter("BackColorRed");
              String cGreen = getParameter("BackColorGreen");
              String cBlue = getParameter("BackColorBlue");
              String cfRed = getParameter("ForeColorRed");
              String cfGreen = getParameter("ForeColorGreen");
              String cfBlue = getParameter("ForeColorBlue");
              iYear = Integer.parseInt(getParameter("Year"));
              iMonth = Integer.parseInt(getParameter("Month"));
              iDay = Integer.parseInt(getParameter("Day"));
              iHour = Integer.parseInt(getParameter("Hour"));
              iMinute = Integer.parseInt(getParameter("Minute"));
              Color background = new Color(Integer.parseInt(cRed),
                                  Integer.parseInt(cGreen),
                                  Integer.parseInt(cBlue));
              Color foreground = new Color(Integer.parseInt(cfRed),
                                  Integer.parseInt(cfGreen),
                                  Integer.parseInt(cfBlue));
              // Set the applet background color to match the label background
              setBackground(background);
              tfCountdown = new Label("asdfasdfasdfasdfasdf");
              tfCountdown.setBackground(background);
              tfCountdown.setForeground(foreground);
              tfCountdown.setFont(new Font("Arial",Font.PLAIN,10));
              P1 = new Panel();
              P1.setLayout(new FlowLayout(FlowLayout.LEFT,0,2));
              P1.add(tfCountdown);
              add("North",P1);
              tfCountdown.setBounds(10,10,300,30);
              clHuntCalendar = Calendar.getInstance();
    clHuntCalendar.set(iYear,iMonth-1,iDay,iHour,iMinute,0);
              sTime = new String();
              thThread = new Thread(this);
              thThread.start();
         public void run()
              while(true)
                   clCalendar = Calendar.getInstance();
                   TimeInMillis gcTM = new TimeInMillis();
                   long lMilliHunt = gcTM.getMillisForDate(clHuntCalendar);
                   long lMilliNow = gcTM.getMillisForDate(clCalendar);
                   if (lMilliNow >= lMilliHunt) {
                        tfCountdown.setText("Go Bust One!!!");
                        this.stop();
                        return;
                   long elapsedTime = lMilliHunt - lMilliNow;
                   long lTemp, lDays, lHrs, lMins, lSecs;
                   lTemp = elapsedTime/(60*60*1000L);
                   lHrs = lTemp;
                   lDays = lHrs / 24;
                   lHrs = lTemp - (lDays * 24);
                   if (clCalendar.get(clCalendar.SECOND) >= clHuntCalendar.get(clHuntCalendar.SECOND)) {
                        lSecs = 60 - (clCalendar.get(clCalendar.SECOND) - clHuntCalendar.get(clHuntCalendar.SECOND));
                        clCalendar.set(clCalendar.MINUTE,clCalendar.get(clCalendar.MINUTE)+1);
                   else {
                        lSecs = (clHuntCalendar.get(clHuntCalendar.SECOND) - clCalendar.get(clCalendar.SECOND));
                   if (lSecs == 60) {
                        lSecs = 0;
                   if (clCalendar.get(clCalendar.MINUTE) >= clHuntCalendar.get(clHuntCalendar.MINUTE)) {
                        lMins = 60 - (clCalendar.get(clCalendar.MINUTE) - clHuntCalendar.get(clHuntCalendar.MINUTE));
                   else {
                        lMins = (clHuntCalendar.get(clHuntCalendar.MINUTE) - clCalendar.get(clCalendar.MINUTE));
                   if (lMins == 60) {
                        lMins = 0;
                   sDays = String.valueOf(lDays) + " Days ";
                   if (lHrs < 10) {sHrs = "0" + String.valueOf(lHrs);} else {sHrs = String.valueOf(lHrs);}
                   if (lMins < 10) {sMins = "0" + String.valueOf(lMins);} else {sMins = String.valueOf(lMins);}
                   if (lSecs < 10) {sSecs = "0" + String.valueOf(lSecs);} else {sSecs = String.valueOf(lSecs);}
                   sTime = sDays + sHrs + ":" + sMins + ":" + sSecs;
                   tfCountdown.setText(sTime);
                   try {
                        thThread.sleep(1000);
                   } catch (InterruptedException e) {}
         public void stop()
              thThread = null;

  • Help Flash player will not run in Internet Explorer 11?

    I have downloaded Adobe Flash Player and it will not run in Internet Explorer 11.  I have done the things suggested in the help/forum section. What else can I try?

    This is a known problem with Internet Explorer 11, which Microsoft has been aware of since October 18 when they released their latest "untested" browser. The pages can't recognize the browser, so they don't recognize any of the plugins, like Flash Player. So far, Microsoft has made NO indication that they have any plan to fix it soon.
    Microsoft's recommendation is to use Compatibility View for affected pages, and "pretend" you're using an different browser. Trouble with that is it has seen limited success at best, and you have to individually enable it for EVERY page that has problems.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that because it has its own Flash Player plugin built in.

  • PDF's won't print in Internet Explorer after upgrading to Adobe Reader 11.0.03

    PDF's won't print in Internet Explorer 9 after upgrading to Adobe Reader 11.0.03.
    The print dialogue box won't open....nothing happens.
    Desktop OS is Windows 7 SP1.
    Randy Heil

    Two obvious troubleshooting techniques are to delete and re-install the printer driver (or updating printer driver) and fixing the installation of Acrobat. Have you given those a try?

  • Page won't load in Internet Explorer

    I have this popup jsp page that loads perfectly in Mozilla Firefox but it wont load in Internet Explorer. There are no errors reported by internet explorer. What am i missing here?
    This is the link that refers to the page:
    add schedule
    This is the page that won't load in internet explorer:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ include file="/WEB-INF/jsp/include.jsp" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Drishti DACX Customized Reports version 0.1</title>
    <link rel="stylesheet" type="text/css" href="css/main.css" />
    <script type="text/javascript">
    var str="<c:out value="${reloadnow}"/>";
    if (str=="true") {
    window.opener.document.location = 'generate.htm';
    window.close();
    </script>
    <script language="javascript" type="text/javascript" src="js/datetimepicker.js" />
    </head>
    <body>
    <h4>Add/Edit Schedule</h4>
    Instruction: Fill out the form below and click on the save button. You may change the default Rate per Sale defined in your campaign preferences.
    <form name="createEntryForm" method="post">
    <c:if test="${addSchedEvent==''}">
    <input type="hidden" name="hdnEvent" value="add">
    </c:if>
    <c:if test="${addSchedEvent!=''}">
    <input type="hidden" name="hdnEvent" value="<c:out value="${addSchedEvent}"/>">
    </c:if>
    <input type="hidden" name="id1" value="<c:out value="${id}"/>">
    <table cellspacing=1 cellpadding=1 border=0 width="100%" height="100%">
    <tr>
    <td align="right" width="30%" class="item2">Date:</td>
    <td> <input name="callDate1" id="callDate1" type="text" size="20" value="<c:out value="${callDate}"/>"> <img src="images/cal.gif" width="16" height="16" border="0" alt="Pick a date"><br> <small><font size="1">mm-dd-yyyy</font></small></td>
    </tr>
    <tr>
    <td align="right" width="30%" class="item2">Total Agents:</td>
    <td> <input name="totalAgents1" type="text" size="10" value="<c:out value="${totalAgents}"/>"></td>
    </tr>
    <tr>
    <td align="right" width="30%" class="item2">Payroll Hours:</td>
    <td> <input name="payrollHours1" type="text" size="10" value="<c:out value="${payrollHours}"/>"></td>
    </tr>
    <tr>
    <td align="right" width="30%" class="item2">Rate per Sale (in USD):</td>
    <td> <input name="ratePerSale1" type="text" size="10" value="<c:out value="${ratePerSale}"/>"></td>
    </tr>
    <tr>
    <td align="right" width="30%" class="item2">Percentage Net:</td>
    <td> <input name="percentNet1" type="text" size="10" value="<c:out value="${percentNet}"/>"></td>
    </tr>
    <tr>
    <td colspan="2" align="center"><br>
    <c:if test="${addSchedEvent!='delete'}"><input type="submit" value=" Save " onclick="return confirm('Are you sure you want to save this schedule?');"> </c:if>
    <c:if test="${addSchedEvent=='delete'}"><input type="submit" value=" Delete " onclick="return confirm('Are you sure you want to delete this schedule?');"> </c:if>
    <input type="button" value="Cancel" onclick="window.close();"></td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    Content of include.jsp:
    <%@ page session="true"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
    <%@ taglib prefix="spring" uri="/spring" %>
    <%@ taglib prefix="ui" uri="/datagrid" %>

    Firstly, common error: missing closing HTML comment at the end of the <style> block (in the <head> section) so the browser thinks the entire page code is a HTML comment and ignores it all.
    Always check that HTML comments are correctly closed, particularly inside <style> blocks.
    Around line 130
    change:
    .style75 {color: #CCCCCC}
    </style>
    to:
    .style75 {color: #CCCCCC}
    -->
    </style>
    The "-->" tells the browser that the HTML comment (ignored by browsers) is complete and the browser should start reading and displaying the code again in the browser window.
    See if that helps.

  • Won't connect to Internet explorer....just got this computer a week ago brand new

    I just got this computer brand new a week ago. It started trying to watch vid on the net and it workstation show the picture. Then 2 days later it won't connect to Internet explorer at all. I'm so frustrated I mean how is this possible to have problems already. If I can't fix this tomorrow I'm taking it back. Please help thank you

    Before you go there call your provider first and have them check the provisioning on the phone. They will ask if you did this when you go to the Genius Bar.

  • Applet failed to load in Internet Explorer when using JRE 1.5 update 5

    I have downloaded JRE 1.5 Update 5 and checked the relevant checkbox in Internet Explorer Advanced tab to use JRE 1.5 for applets. Did the same in Java Control Panel. However none of the applets seem to load.
    For example I went to this site:
    http://java.com/en/download/help/testvm.xml
    The applet didn't load and I got the following error in my Sun Java Console :
    load: class JavaVersionDisplayApplet.class not found.
    java.lang.ClassNotFoundException: JavaVersionDisplayApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

    And it's the same behaviour in JRE 1.5 update 8 as well.

  • Java applet not showing up in Internet Explorer 8

    Hi,
    I have an applet tag in a JSP, and it is not working in Internet Explorer 7 and 8.
    Yes, I have read that the applet tag was deprecated - the problem is that it is working for my colleague, also in IE8.
    Java is enabled on my machine/IE options.
    Could anyone please suggest what the issue might be?
    Thanks.

    I haven't tried resizing the applet yet. Since you all mentioned it I am going to play with that later today.
    To elaborate on the fix, yes - updating to Java 6 - 16 will allow IE 8 to display applets.
    Just in case anyone else runs into this issue as well:
    I am running Vista on a 64 bit.
    It has two directories named Program Files:
    One named just "Program Files" - evidently for the 64 bit stuff.
    Another named something like "Program Files (x86)".
    Apparently it will look into "Program Files" - the 64 bit one by default.
    I haven't found a 64 bit version of Java 6 - 16 to install - the only 64 bit one is some version of 1.5, unless I am missing something, so the Java 6 - 16 installed into the Program Files(x86), and 1.5 into Program Files. Windows pointed JAVA_HOME to 1.5 because it looks into the Program Files by default.
    The result was that when I went to the Java site it analyzed my Java version and told me I have the most up to date version. But -
    java -version on the console returned 1.5. Confusing at first, but on such systems, apparently the JAVA_HOME has to be explicitly repointed to the (x86) Program File directory.

  • .swf won't open in internet explorer

    Hi,
    This is driving me mental, flash seems to hate me! created a webpage in dreamweaver and then dropped .swf videos onto it. One video though was originally a .mov which i encoded to f4v in media encoder and then exported as a .swf from flash. It worked fine on my computer and now that it's uploaded it refuses to play. Also it won't preview on my computer anymore! Please help.
    This is the page it's supposed to play on www.dpdigitalmedia.co.uk/portfolio.html
    Affroken

    If you're having trouble installing Adobe Flash Player, try downloading the installer directly from the following link:
    Flash Player for ActiveX (Internet Explorer)
    Save it, close your browser and run it.

  • Applet Won't run!!!

    I am using netbeans IDE 3.3 to create applets. They runfind within hte IDE Appletviewer but when I run them usint Internet Explorer 5, I get an message "Class can not be found".
    Using windows 2000, IE5, JDK2
    Any ideas.

    Are you sure your HTML file is in the same directory as your applet file?
    IF your applet uses swing you need to download this converter and convert your html files with it for them to support swing.
    http://java.sun.com/products/plugin/1.3/converter.html

  • Vista - jre1.6.0_05 - applets won't run

    I just got my new Vista (32-bit Vista) computer. It is fully up to date. I just installed JRE 6 Update 5 (aka jre1.6.0_05). The installation seemed to go perfectly.
    However, immediately after the installation, I tested my installation by going to: http://www.java.com/en/download/help/testvm.xml. The test failed! I also verified that my browser (Internet Explorer 7) is configured to use jre1.6.0_05 and I have cleared temporary Internet files too.
    It seems I cannot run any applets.
    Any thoughts?
    Neil - Salem, MA USA
    Edited by: Neil-Salem-MA-USA on Apr 9, 2008 2:41 PM
    Edited by: Neil-Salem-MA-USA on Apr 9, 2008 2:42 PM

    Well ...I have solved my problem!
    I had forgotten that shortly after I got my new Vista computer I became so irritated at the non-stop prompts (asking me if I really intended to perform a task that I had just initiated) that I disabled User Account Control. I guess that was a mistake.
    Since I am the administrator on my Vista machine, I thought that by disabling UAC that my computer would behave like my older XP machine. I thought that programs would install properly and then run properly, since I, the installer, had administrative rights. I was wrong.
    Here's what I did to fix my problem. Since I had turned UAC off prior to my previous installation of Java 6, I left the setting off while I uninstalled Java. I rebooted and I turned UAC on. Once again, I rebooted. I then re-installed Java 6 Update 5, rebooted one more time, and then I ran the test at http://www.java.com/en/download/help/testvm.xml.
    IT WORKED!
    If you hear of other people having a problem similar to mine, tell them of my experience and how I resolved my problem.
    Neil - Salem, MA USA

  • Need to run IE (Internet Explorer) any other way besides Parallels?

    New to Mac (part II). Ok, new to Mac part II means I tried a couple years ago but because I was dependent on MS products and IE (have to have IE for real estate) I had to switch back to PC. Now with new Intel chip and am happy to say I am the proud new owner of a MacBook which brings me to my question.
    I'd love to be able to toss my PC and never return to it again but I can't unless I can find a way to run IE. I am running Parallels/Vista and can access IE that way but man does that cause the Mac to run up it's activity.
    I have 2GB of RAM and the activity monitor with Parallels running shot over 100% just this program alone. The fan was blowing.
    I only need IE for one purpose; to access the MLS (I am in real estate and it's all they authorize to access the MLS - Multiple Listing Service). Is there another way to immulate IE without going through the trouble of running Parallels?
    It makes me uneasy to have the fan working as hard it is running Parallels or am I being overly cautious? Thanks.
    I

    Thanks, Opera did not work. As for BootCamp, the reason I choose Parallels was for the convenience of NOT having to reboot in and out all the time. With Parallels I can run the program within Mac and just click back and forth. I guess when I have to access it I'll just put up with the amount of resources it takes up.
    Thanks for all the assistance.
    FYI - here is the message I get.
    Thank you for your interest in the MLS System
    The MLS System was specifically designed for Internet Explorer versions 6.0 or greater. Your browser version is not supported. To download the latest version of Internet Explorer, visit the Internet Explorer Downloads Web site.
    Once Internet Explorer is installed, you can go to the MLS System site by typing http://mfr.mlxchange.com into the address bar.
    The MLS System is the premiere web application that helps Realtors get the most out of their business.

  • Class Not Found Exception - applet won't run anywhere outside of IDE

    I have an applet that runs perfectly in the netbeans IDE, but won't run from command prompt (I'm using windows) or from a browser. I've been banging my head against the wall for a few days on this one. Here's the HTML I'm using:
    <applet width="400" height="525" code="musicapplet.class" archive="crypticgraffiti.jar">
    <param name="bgcolor" value="ffffff"> <param name="fontcolor" value="000000">
    </param> </param> Your browser is not Java enabled. </applet>
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    When I attempt to run from command prompt, I get:
    "Error: Could not find or load main class crypticgraffiti.MusicApplet"
    When I attempt to load via html:
    "basic: load: class musicapplet.class not found.
    load: class musicapplet.class not found.
    java.lang.ClassNotFoundException: musicapplet.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: musicapplet.class
    security: Accessing keys and certificate in Mozilla user profile: null"
    I have tried every possible variation for the 'code' element of the applet tag (package.mainclass.class, mainclass, mainclass.class, etc). I have also tried compiling with JDK 1.6 and this didn't change anything. I've tried clearing out the cache of temporary files using the java control panel settings, and have verified that my browser can run other applets using JRE 6 and 7.
    I've tried some different ways of distributing the applet, also: putting all the class files in the folder with the html file, putting the classes in a source folder in the same folder as the html file, and finally putting a jar in the same folder as the html file (which really seems the simplest).
    Any help at all would be most appreciated! This applet is a very cool and original music creating app that draws heavily on the JFugue API. It's a shame that I can't get it online for people to play with!

    Cryptic Graffiti wrote:
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    Please note that class names are case sensitive so "MusicApplet" is not same as "Musicapplet" or "musicapplet". Your applet tag should have fully qualified class name (without quotes) and should look like this:
    <applet width=400 height=525 code=musicapplet.MusicApplet archive="crypticgraffiti.jar">
    </applet>
    The JAR should be in the same directory as your HTML file. While launching from command line, you can also check if your JAR file is getting included in classpath.
    Thanks,
    Nitin

  • Java Applet Background Color Problem on Internet Explorer

    Hi,
    Please check out the following URL:
    http://www.utopiainteractive.com/clients/AkonFinal/glossary.htm
    The menu bar is writting in Java Applet. If you scroll down the page, and scroll back up, I see white background as I scroll back up. It happens only on Internet explorer. Neither Java Applet nor HTML Body bg color is white. I am kinda lost, and any help would really be appreciated.
    Thank you and look forward to hearing from someone soon.
    Sachin

    Hi,
    Well I used HtmlConver utility to generate applet html code, so I assume nothing is wrong with Object tag. Do you know what could cause this problem on Internet explorer? To be honest, I spent last couple of days, but I am just lost. It absolutely works fine on Netscape.
    Thanks,
    Sachin

  • Photo Album Won't Run From Internet

    CS4 - I posted earlier that my photo albums won't run from the internet but runs from my computer and from a flash drive. I have rebuilt it probably 10 times. The URL is http://www.kandjreynoldsconstruction.com/gallery/index.html. Albums that I've built before are still running. Any Help would be great. Donna

    Be sure that all the necessary supporting elements—javascripts, css, and images—have been uploaded to the server as well, using the same folder structure as the local version of your photo album. (Based on a look at the index page's source code, it seems that elements may be missing.)

Maybe you are looking for

  • Error in Transaction launcher - CRM 5.0 / ECC 6.0

    Hello all, I am trying to pull one ECC 6.0 transaction into CRM 5.0 IC webclient through launch transaction. When I click the link in the NavBar, I get the logon box for ECC system but after I enter the logon details below error message is getting di

  • Alpha Channel - can't export to psd after update?

    Been doing this for years... from After effects CC Composition, Save frame as,  File, Photoshop,  RGB+Alpha  etc - and its worked fine exported with transparency like you'd expect. Updated Photoshop CC this morning and suddenly alpha channel not bein

  • Question about AppleScript, iTunes and the app Proximity...

    So I have this application Proximity, which uses bluetooth's proximity to the cpu to run both an out-of-range script and and in-range script. I'm currently using it to activate my screensaver with password lock and vice versa. I'm also using it to sy

  • Versions in ASAP Methodology

    Hai guys, Can u share what r the versions  r used generally in ASAP methodology. Thank u, MMR.

  • Bank sign-in page appears to have been hijacked, how to proceed?

    My bank sign-in page seems to have been hijacked on Firefox. Says my online ID is incorrect and asks for social sec. number. Contacted bank and confirmed online ID. Am able to log-in through Explorer, but prefer Firefox. I've been told to uninstall a