Start:applet not initilaized error

Hi friends,
I'm getting Start:applet not initilaized error when i'm running a program...
saved a notepad file as Testloan.java used javac Testloan.java and appletviewer Testloan.java to execute the applet here is my code...
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
<html>
<applet code="Testloan.class" width=300 height=100>
</applet>
</html>
public class Testloan extends Applet implements ActionListener
TextField t1,t2,t3;
Label lp,lr,lmp;
Button b1,b2;
     public void init()
     lp=new Label("Principal");
     lr=new Label("Rate");
     lmp=new Label("Payment");
     add(lp);
     add(lr);
     add(lmp);
     t1=new TextField();
     add(t1);
     t2=new TextField();
     add(t2);
     t3=new TextField();
     add(t3);
     b1=new Button("submit");
     add(b1);
     b1=new Button("Exit");
     add(b2);
     b1.addActionListener(this);
b2.addActionListener(this);
public void start() {
//win.setVisible(true);
public void stop() {
//win.setVisible(false);
public static int months(int principal,double rate,int payment)
          Testloan tl=new Testloan();
          principal=Integer.parseInt(tl.t1.getText());
          rate=Double.parseDouble(tl.t2.getText());
          payment=Integer.parseInt(tl.t3.getText());
          int p=principal;
          double eRate = rate / 1200.0;
          int month =0,np=1;
               while(np>0)
               month = month + 1;
               np= (int) (p*(1+eRate)-payment );
               System.out.println(np+"/n");
               p = np;
          return month;
public void actionPerformed(ActionEvent e)
String cmd = e.getActionCommand();
}

First, the code you posted was mangled by the forum formatting software. When you post code, select it and click the CODE button above the typing area, which will prevent that, and maintain your formatting.
When you ran the appletviewer program from the cmd window, error information was posted to it by the java command. Did you look at it? It says that you have a NullPointerException at this line
add(b2);because there's a typo in this line
b1 = new Button("Exit");which should have assigned a value to b2, not b1
Read and understand the error messages that java creates, they almost always point exactly at the problem and allow you to debug the cause.

Similar Messages

  • Plz, tell me How can i solve the -- start:applet not initilized error..

    Here is my code
      * Sigmoid Function Generator
      * @author
      * @version
    *<applet code="Sigmoid" width=500 height=500></applet>
    import java.awt.*;
    public class Sigmoid extends java.applet.Applet implements Runnable
        private static final long serialVersionUID = 5622349801036468572L;
       boolean finished = false;          //indicates when the curve has been completed
       double k = .025;                   //non-linearity constant
       double y = k / 4;                  //output value
       double x = 0;                      //input value
       double dx = k / 10;                //plotting (or look-up table) increment
       int s = 200;                       //pixels per unit real (scaling factor)
       int H = 0, V = s - 1;              //window co-ordinate of graphical origin
       int X, Y;                          //dimensions (in pixels) of the applet window
       Image I = null;                    //reference for an off-screen image I
       Graphics i = null;                 //graphics context for the off-screen image
       long TF = 50;                      //total Time Frame for plotting update cycle
       long T;                            //time at which the next new cycle is due to begin
       Thread plotting;                   //declare a thread reference variable
       Font font;                         //and a font reference for annotations
       Color tr;                          //trace colour
       boolean TypeFlag = false;          //set for unipolar presentation
       public void init()
          {                                         //INITIALISE THE APPLET
          int Xy, Yx;                                 //co-ords of axis labels
          tr = new Color( 0, 128, 64);                //create special dark green for trace
          font = new Font("Dialog", Font.PLAIN, 12);  //choose the lettering font for this applet
          Dimension d = getSize();                    // instead of size() use this method, get size of window as given in HTML applet tag
          X = d.width; Y = d.height;                  //establish window width and height
          I = createImage(X, Y);                      //create the off-screen image I
          i = I.getGraphics();                        //graphics context reference for off-screen image
          if(getParameter("type").equals("bipolar"))
              {                                       //if applet parameter 'type' = 'bipolar'
             TypeFlag = true;                         //set the TypeFlag true;
             k = .011;                                //non-linearity constant
             y = 0;                                   //output value
             x = 0;                                   //input value
             dx = .0025;                              //plotting (or look-up table) increment
             s = 100;                                 //pixels per unit real (scaling factor)
             H = 100; V = 100;                        //window co-ordinate of graphical origin
             Xy = V + 10; Yx = H - 10;                //co-ords of axis letters
          else
             {                                         //if doing a unipolar graph
             Xy = V - 5; Yx = H + 5;                  //co-ords of axis letters
          i.setColor(Color.lightGray);                //set background colour for the off-screen image
          i.fillRect(0, 0, X, Y);                     //paint background of off-screen image
          i.setFont(font);                            //set up the annotation font
          i.setColor(Color.gray);                     //set colour for drawing the graph axes
          i.drawLine(0, V, X, V);                     //draw x axis
          i.drawLine(H, 0, H, Y);                     //draw y axis
          i.setColor(Color.black);                    //set colour for lettering
          i.drawString("X", X - 10, Xy);        
          i.drawString("Y", Yx, 10);                  //print the X and Y axis letters
          i.setColor(tr);                             //set colour to paint the trace on image
          T = System.currentTimeMillis() + TF;        //set end time for current update time frame
       public void paint(Graphics g)
       {         //set up the graphics
          g.drawImage(I, 0, 0, null);          //(re)draw from the off-screen image I
       public void update(Graphics g)
            {                                            //PLOT THE SIGMOID GRAPH
          if(x > 1 || y > 1)                   //if plot has reached edge of graph
             finished = true;                  //set the 'finished' flag
          else {                               //if not yet finished plotting graph
             int h = (int)(s * x);             //convert horizontal plot to pixels
             int v = (int)(s * y);             //convert vertical plot to pixels
             g.setColor(tr);                   //set colour to paint the trace on screen
             int a = h, b, c = V - v, d;       //simplify pixel co-ordinates
             if(TypeFlag)
                a = H - h; b = H + h;          //simplify pixel co-ordinates
                c = V + v; d = V - v;
                g.drawLine(b, d, b, d);        //do next plot in lower left quadrant
                i.drawLine(b, d, b, d);        //do next plot in lower left quadrant
                y += k * (1 - y);              //advance the output difference equation
             } else
                y += k * y * (1 - y);          //advance the output difference equation
             x += dx;                          //advance the input value
             g.drawLine(a, c, a, c);           //do next plot in upper right quadrant
             i.drawLine(a, c, a, c);           //do next plot in upper right quadrant
       public void run() {                            //run the plotting thread
          while(true) {                               //permanent loop broken by external event
             if(!finished) repaint();                 //if not yet finished, do next plot
             long s = T - System.currentTimeMillis(); //get time remaining in this cycle's time frame
             if (s < 5) s = 5;                        //in case host PC is too slow for ideal trace speed
             try {
                 Thread.currentThread().sleep(s);    //sleep for remaining time
             catch (InterruptedException e)
                 System.out.println(e);
                                                        //allow browser events to break the thread
                 }                                        //happens if you return to applet's HTML page
             T = System.currentTimeMillis() + TF;     //set finish time of next time frame
       public void start() {                          //Start program thread by
          plotting = new Thread(this);                //creating the thread object
          plotting.start();                           //and starting it running
       }                                              //[returns a call to run()]
    // public void stop() {plotting.stop();}          //Stop program thread
    private volatile Thread blinker;
        public void stop() {                           // new method to stop thread
            blinker = null;

    Hi there Abdullah ch,
    You may find the information in the article below helpful.
    iOS: Understanding Restrictions (parental controls) 
    Important: If you lose or forget your Restrictions passcode, you'll need to perform a factory restore to remove it.
    -Griff W.  

  • "applet not initialized " error message  HELP !

    My applet compiles ok but when I try to run it at the bottom of the screen it says
    start : "applet not initialized"
    note - it works ok compiling from the Window console and then opening
    the .html file in the browser, but when I try the same applet in the
    BlueJ IDE ....that is when I get an error message.
    Thank you in advance
    import java.awt.*;
    import objectdraw.*;
    //A program that produces an animation of the rising and setting sun
    //The animation is driven by dragging the mouse
    public class ScrollingSun extends WindowController
    private FilledOval sun; // circle that represents the sun
    //Place the sun and some brief instructions on the screen
    public void begin()
    sun = new FilledOval(100,150,100,100,canvas);
    sun.setColor(Color.yellow);
    new Text("Drag the mouse up or down", 20,20,canvas);
    //Move the sun to follow the mouse's vertical motion
    public void onMouseDrag(Location mousePosition)
    sun.moveTo(100,mousePosition.getY() );
    <html>
    <head>
    <title> ScrollingSun
    </title>
    <body>
    <applet
    archive = "objectdraw.jar"
    codeBase = "."
    code = "ScrollingSun.class" width = 800 height = 800 >
    </applet>
    </body>
    </html>

    I put a start() around the begin() method
    and a public void init() method around the onMouseDrag() method
    but I am getting an "illegal start of expression" error message
    Thank you for your advice
    import java.awt.*;
    import objectdraw.*;
    //A program that produces an animation of the rising and setting sun
    //The animation is driven by dragging the mouse
    public class ScrollingSun extends WindowController
       private FilledOval sun;   // circle that represents the sun
      public void start()
          //Place the sun and some brief instructions on the screen
          public void begin()
             sun = new FilledOval(100,150,100,100,canvas);
             sun.setColor(Color.yellow);
             new Text("Drag the mouse up or down", 20,20,canvas);
       public void init()
           //Move the sun to follow the mouse's vertical motion
           public void onMouseDrag(Location mousePosition)
             sun.moveTo(100,mousePosition.getY() );
    }

  • Issue: 'Start Applet not initialized'.

    I can't debug this program? Can you help?
    Thanks!
    import java.text.NumberFormat;
    public class Account
    private final double RATE = 0.035; // interest rate of 3.5%
    private long acctNumber;
    private double balance;
    private String name;
    // Sets up the account by defining its owner, account number,
    // and initial balance.
    public Account (String owner, long account, double initial)
    name = owner;
    acctNumber = account;
    balance = initial;
    // Deposits the specified amount into the account. Returns the
    // new balance.
    public double deposit (double amount)
    balance = balance + amount;
    return balance;
    // Withdraws the specified amount from the account and applies
    // the fee. Returns the new balance.
    public double withdraw (double amount, double fee)
    balance = balance - amount - fee;
    return balance;
    // Adds interest to the account and returns the new balance.
    public double addInterest ()
    balance += (balance * RATE);
    return balance;
    // Returns the current balance of the account.
    public double getBalance ()
    return balance;
    // Returns a one-line description of the account as a string.
    public String toString ()
    NumberFormat fmt = NumberFormat.getCurrencyInstance();
    return (acctNumber + "\t" + name + "\t" + fmt.format(balance));
    }

    AndrewThompson64 wrote:
    Melanie_Green wrote:
    robert_png wrote:
    I'm afraid I don't understand what you meant.
    When I compile the program, there's no bug. But when try to run it, it says "Start applet cannot be initialized".
    Why is that? I'm new to Java..Maybe because the Class you are trying to run is not an applet? Possibly, but the OP posted the Account class, whereas the Start class has not yet been revealed. That is one of the reasons I suggested an SSCCE.
    BTW I spotted a bug in your code above.You did. OTOH the OP has more imperative problems to fix, before they can 'understand the wisdom'(1) of your comment. ;)
    1) By which I mean, see it fail for the reasons you outlined.I usually expect to find the context of a problem to be outlined in the form of an explanation or question inside a thread. I guess I should pay more attention to the title.
    =) Mel

  • Applet not running(Error:error reading applets)

    i write a very simple applet .it succesfully compile but on running thru command prompt(windowsxp) it gives error error reading applets

    The first advice given was the best advice you will get at this stage.
    OTOH, the problem might be that the compilation options used on Windows were for a 1.6+ JRE, whereas the Mac is running a 1.5 JRE.
    If that is the case, the relevant questions become..
    How do you compile the applet (e.g. IDE, IDE with Ant build script, command line..)?
    What SDK version are you using?
    What compilation options are used (the important ones here are -source -target and -bootclasspath )?
    What [java version|http://pscode.org/prop/?prop=java.version] is the Mac using?
    Also note that many things* can be determined if you provide an URL to the applet.
    * Especially if someone has a Mac and can report the error.

  • Re: class can't be instantiated/ applet not initialized error

    I would change the following:
    From:
    public abstract class AmazingApplet extends JApplet implements ActionListener
    to:
    public class AmazingApplet extends JApplet implements ActionListener
    Also, since your class implements ActionListener, you must have an actionPerformed method (to take care of the addActionListener that you used all over the place.
    V.V.

    Thanks Viravan,
    When I remove "abstract", I get the following error message:
    AmazingApplet.java:7: AmazingApplet should be declared abstract; it does not define actionPerformed(java.awt.event.ActionEvent) in AmazingApplet
    public class AmazingApplet extends JApplet implements ActionListener
    Also, I do have actionPerfomed method in the program. Any suggestions?

  • Spinning Wheel crashes at start up, Not an error with actual hard drive.

    I recently bought a second hand macbook pro 2009. The guy told me it worked fine but you couldn't update the Operating System. I was okay with this because we agreed it must be a hard drive issue and i wanted to replace it with a 1tb SSHD anyway. I tried to enter disk utility to wipe the original 160gb hard drive, but like the guy said, the spinning wheel would just crash. So i installed my new 1000tb SSHD and the exact same thing happen, i insert a Mavericks USB, hold Option, click on the bootable USB and the spinning wheel starts and then stops.
    The only way i was able to wipe the 160gb using disk utility was doing it through my iMac and having the Macbook in Target mode.
    I know it's not a hard drive issue, as i bought three of these SSHD's and the other two worked fine. Would it be the hard drive cable or something else?
    Thanks.

    Any advice?

  • Start: Applet not initialized!!!

    need help... can't seem to run the applet program
    <HTML>
    <HEAD>
    <TITLE>CyberPet Applet</TITLE>
    </HEAD>
    <BODY>
    <p>
    <applet code="CyberPetApplet.class" width=300 height=150>
    </applet>
    </p>
    </BODY>
    </HTML>C:\Program Files\jbuilder5\jdk1.3\bin\javaw -classpath "D:\java\CyberPet\classes;C:\Program Files\jbuilder5\jdk1.3\demo\jfc\Java2D\Java2Demo.jar;C:\Program Files\jbuilder5\jdk1.3\jre\lib\i18n.jar;C:\Program Files\jbuilder5\jdk1.3\jre\lib\jaws.jar;C:\Program Files\jbuilder5\jdk1.3\jre\lib\rt.jar;C:\Program Files\jbuilder5\jdk1.3\jre\lib\sunrsasign.jar;C:\Program Files\jbuilder5\jdk1.3\lib\dt.jar;C:\Program Files\jbuilder5\jdk1.3\lib\tools.jar" -Djava.security.policy="C:/Documents and Settings/Ayen/.jbuilder5/appletviewer.policy" sun.applet.AppletViewer File:///"D:/java/CyberPet/classes/cyberpet/CyberPet.html"
    java.lang.NoClassDefFoundError: CyberPetApplet (wrong name: cyberpet/CyberPetApplet)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:142)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:366)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
         at sun.applet.AppletPanel.run(AppletPanel.java:293)
         at java.lang.Thread.run(Thread.java:484)

    i tried putting the html file in the same
    CyberPetApplet.class directory, but it doesnt
    work.....You have to do one of the following.
    1) Put your applet in a jar. Then you can put the jar in the same directory as your html page (or whereever you want to put it really). (This is the preferred method).
    2) You'll have to put the class file in the right directory structure based on your package structure relative to your html file.
    So in the directory with your html file you would have a directory named cyberpet with your applet class inside.

  • Applet works on eclipse but not on reg browser (not inited error)

    Hi everybody,
    I've just made an applet, but I don't know why it can't be shown. I'm working with Eclipse, and when I run the .java file, everything works fine. It even works fine when I specify parameters through the eclipse build file parameter arguments.
    Now I would like this to work by using the appletviewer and my html file. When I do this, the application doesn't work anymore and I get this error: Start applet not inited and shows loading java Applet failed when I scroll over to the java applet box on the browser. (Mozilla)
    I used this code in the html file:
    <html>
    <head>
    <title>MicroToolBus Example Plugin Applet 2 </title>
    </head>
    <body>
    <h1>MicroToolBus Example Plugin Applet 2 </h1>
    <hr>
    <applet code =MicroToolBus.class width=400 height=100>
    <param name="ModelName" value="edu.vt.vbi.pathport.client.plugin.microarray.MicroarrayModel">
         <param name="DataLocation" value="c:/eclipse/workspace/PathPort/xml/samples/mageml/pmml.xml">
    </applet>
    </hr>
    </body>
    </html>
    which is located at
    C:\eclipse\workspace\PathPort\build\edu\vt\vbi\pathport\client\toolbus\MicroToolBus.html
    The MicroToolBus.class file is located in the same directory. What am I doing wrong. I tried putting the class file and the html in the same directory as the actual .java file of the applet, but that didn't seem to work either. Thanks in advance; your help and suggestions are much appreciated,

    What am I doing wrong?Your getting caught in the Sun/Microsoft war. Numerous casualties. For rehab, see:
    http://www.MartinRinehart.com
    Click "Articles", "Launching Applets".
    Warning: make a big mug of java before you start. This is not trivial stuff.

  • Applet not initialized, when I uninstall JRE1.4.1_24 on Win NT 4.0

    We have uninstalled JRE1.4.1_24 from Win NT4.0 system and installed JRE1.3.1_08. Applet not initialized error coming up when the broser tries to open applet. Please help.

    The Windows Java uninstall doesn't do a good job cleaning up after itself.
    I ended up having to reinstall JRE1.4 to getting it working again.
    Eugenio

  • HT5242 applets not permitted. JavaVirtualMachines not installed

    having java problem in safari. i'm getting applets not permitted error when trying to down load multiple images from media bin

    How do I test whether Java is working on my computer?

  • ACCOUNTING HIERARCHY MANAGER NOT STARTED,APPLET ERROR JBO-27022

    제품 : FIN_GL
    작성날짜 : 2004-05-20
    ACCOUNTING HIERARCHY MANAGER NOT STARTED,APPLET ERROR JBO-27022
    ===============================================================
    Problem Description
    Account Hierarchy Manager 실행시 아래와 같이 JBO-27022 error발생하면서,
    해당 기능을 사용할 수 없을 경우에 대한 원인 및 조치사항에 대해 언급한다.
    Navigation PATH : GL Setup -> Accounts -> Manager
    Error내용
    oracle.jbo.AttributeLoadException: JBO-27022: java.sql.SQLException(?ㅈ)ㅇㅙ ?ㅙㅔ?
    java.lang.String ?ㄿㅔ??ㅔ Java ㅀㅄㅐㅌㅈㄶ ㅋ???ㅔㅚ?ㄹ 13 ?ㅙㅅㄶㅍㅊ?ㄱㅌㄽ ㅀㄺ?ㅋ ㅇㅙㅅ¥ㅔㅚㅄㅏ ㅅㄵ
    ㅍㅔㅓ?ㅔ?ㅍ?ㅄㅚㅄ?.
         at java.lang.Throwable.<init>(Compiled Code)
         at java.lang.Exception.<init>(Compiled Code)
         at java.lang.RuntimeException.<init>(RuntimeException.java:39)
         at oracle.jbo.JboException.<init>(JboException.java:354)
    ## Detail 0 ##
    java.sql.SQLException: UTF8ㅀ? UCS2 ㅀㄳ?ㄱ ㅌㄽㅇㅙ ㅊㄿ?ㄿㅔㅛ ㅌ? ㅎ?ㅍ?ㅄㅚㅄ?: failUTF8Conv
         at java.lang.Throwable.<init>(Compiled Code)
         at java.lang.Exception.<init>(Compiled Code)
         at java.sql.SQLException.<init>(SQLException.java:43)
    Solution Description
    GL setup->financial->flexfileds->key -> segments 화면의
    Structures region에서 Title에 입력된 Data가 20 chars(한글은 10글자)를 넘으면
    위와 같은 Error가 발생한다.

    Can you get us somehow a stack? maybe this can help narrowing down the real problem.
    thx clemens

  • Applet not getting started

    In my applet i have to access a file from server...so i read the file this way ,
    public class Remoteconnection()
    File newRemoteFile(String serverName, String shareName, String path, String userName, String password) throws IOException {
    try
         String cmdLine;
            if (userName != null)
            cmdLine = "cmd /c net use \\\\" + serverName + "\\" + shareName + " " + password + " /user:" + userName+"/persistent:no";
         else
            cmdLine = "cmd /c net use \\\\" + serverName + "\\" + shareName + " /persistent:no";
            Process p = Runtime.getRuntime().exec(cmdLine);
            p.waitFor();
            path = path.replace('/', '\\');
            if (path.startsWith("\\"))
            path = path.substring(1);
            return new File("\\\\" + serverName + "\\" + shareName + "\\" + path);
            catch (Exception e) {
                throw new IOException(e.getMessage());
    public class XMLReading()
    public void fileParsing() throws SAXException, FileNotFoundException, IOException
            NewClass1 rt = new NewClass1();
            XMLReader reader = XMLReaderFactory.createXMLReader();
            reader.setContentHandler(this);
            File f = rt.newRemoteFile("172.16.10.183", "ProjectPlanning", "ScheduledXML.xml", "devdomain/1258", "passqws13*");
         reader.parse(new InputSource(new FileReader(f)));
    }But if i run inside the server or in other remote machine,the applet is in its loaded stage(only the sun java symbol is showing)...Its not getting started....Meanwhile,its not showing error in console(But in some client system,its excecuting well....)
    load: class xmlTrail/MD2.class not found.
    java.lang.ClassNotFoundException: xmlTrail.MD2.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.FileNotFoundException: D:\Program Files\VirtualWorks\IIS\ProjectPlanning\xmlTrail\xmlTrail\MD2\class.class (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
         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
    Exception in thread "Thread-4" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-xmlTrail/MD2.class" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)It can be solved in anyway?

    2- Once i close and open new browser safari is opening some olod pages .Its really frustrating dont know how tto get rid out of this
    Because you never closed them.
    just open system preferences>general> and uncheck Reopen Windows When Quiting Apps (or something like that)

  • Doesn't start when starting as administrator. Error Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.

    Update firefox, it asked me to update flash, I tried to update flash but it said I had to close firefox. A box came up and said the Flash install would continue when I closed firefox. I closed all firefox windows and no update of flash occurred. I tried relaunching firefox but got the "Doesn't start when starting as administrator. Error Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." message. I rebooted the system, no improvement. I tried to run firefox as administrator and got the same message. Either I find a fix or I won't be able to use firefox and will have to go back to ie.

    -> press '''CTRL''' + '''SHIFT''' + '''ESC''' to Open Task Manager -> Processes tab -> right-click '''firefox.exe''' and click '''End Process Tree''' -> close Task Manager
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Troubleshooting plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

  • After upgrading to 27, firefox will not start. Saw an error message during the upgrade process.

    After upgrading to 27, firefox will not start. Saw an error message during the upgrade process but cannot remember.
    Tried to run firefox.exe -P but receive error message:
    XML Parsing error: undefined entity
    Location: chrome://mozapps/content/profile/profileSelection.xul
    Line number 18, Column 1:
    <dialog
    ^
    Running on Windows XP SP3. No problem whatsoever before upgrading to 27. Sending this from Chrome as I cannot open Firefox at all.

    Thanks jschaer2000: after starting it once in safe mode, I closed Mozilla and tried several restarts in normal mode. So far, all worked:-)
    Thank you very much again.
    Still the automatic update process bothers me: it took me several days to discover the reason to the malfunction, since when I removed the problematic version from Add and Remove Programs, I didn't pay attention at first that it was another version, not v26 which I installed from my folder.
    In addition, I like to save the installation files before I run new programs and if I didn't have v26 exe file, I couldn't have operated Mozilla at all. Not that it was fun to remove and install again each time v27 didn't react, but it was better than nothing, I still prefer Mozilla over its competition.

Maybe you are looking for