I am having trouble with my JAVA Applet. It isn't functioning on SAFARI.    It seems to have stopped working and I used it on SAFARI last year. Any suggestions ?

I am having trouble with my JAVA Applet. It isn't functioning on SAFARI.    It seems to have stopped working and I used it on SAFARI last year. Any suggestions?

Post in the Safari forum area.

Similar Messages

  • Have installed Mountian Lion, now having trouble with my printer.. Printer is Canon LBP6000.. Does anyone have a driver I can use??

    Have installed Mountian Lion, now having trouble with my printer.. Printer is Canon LBP6000.. Does anyone have a driver I can use??

    It looks like this page from Canon's website will take care of you (provide drivers, etc.):
    http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/laser_pri nters/imageclass_lbp6000#DriversAndSoftware

  • Having trouble with my java applet in IE

    When i try to make my applet work in internet explorer it just comes up with a blank grey box and an error message saying:
    load: class classname not found
    Does anyone know how i can correct this?

    <APPLET code=bobTheBasher.class width=600 height=400></APPLET>and there is a class called "bobTheBasher.class" in the same folder as the HTML file?
    The HTML bit's fine BTW

  • HT2404 Since downloading the new operating system on my iPhone 4S, I'm having trouble with my phone messaging.  I enter a number or input a number from my contacts and send my msg.  I then get error messagings showing a set of "1" are entered before my nu

    Since downloading the new operating system on my iPhone 4S, I'm having trouble with my phone messaging.  I enter a number or input a number from my contacts and send my message.  I then receive a error message stating the message can't be sent and it shows a set of "1s" were added in front of the number I entered.  Ex: 1 (1) xxx-xxx-xxxx.  Does anyone know why this is happening and how I can fix it?

    I realize this. When calling prepaid cus service it only gives you the option to input your #. If you dont the system hangs up on you. When I input my number the system doesnt recognize it and hangs up on me.

  • I recently started to get an error message "MobileMe Services" have stopped working.  I use Vista.  If I remove the MobileMe program, will it affect syncing with my iPhone or with Google Calendar?

    I recently started to get an error message "MobileMe Services have stopped working".  I use Vista.  If I remove the MobileMe program, will it affect syncing with my iPhone or with Google Calendar?

    No, just uninstall the MobileMe control panel. All Mobileme services have been discontinued, so the control panel is not doing you any good being in there at present.

  • I am trying to use a Logitech USB headset to record with screencast o matic. In the sound file of system preferences the headset is recording audio. However it stops working when I use screen cast o matic. Any advice?

    I am trying to use a Logitech USB headset to record with screencast o matic. In the sound file of system preferences the headset is recording audio. However it stops working when I use screen cast o matic. Any advice?

    See these threads for some possible solutions:
    Bluetooth and 10.7
    Bluetooth speaker error

  • Having trouble with my signed applet(if it's properly signed that is)

    hi
    I'm having trouble with my supposedly signed applet. I'm trying to execute a specific program in this case trilian from my browser. i'm using firefox
    first my java code
    package applet;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class RunApplet extends JApplet {
        JButton jButton = new JButton();
        FlowLayout flowLayout1 = new FlowLayout();
        public RunApplet() {
            try {
                init();
            } catch (Exception ex) {
                ex.printStackTrace();
        private void init() throws Exception {
            try {
                this.getContentPane().setLayout(flowLayout1);
                this.setSize(new Dimension(100, 200));
                jButton.setText("Trillian");
                jButton.addActionListener(new RunApplet_jButton_actionAdapter(this,
                        "\"C:\\Program Files\\Trillian\\trillian.exe\""));
                this.getContentPane().add(jButton, null);
            } catch (Exception e) {
                e.printStackTrace();
    class RunApplet_jButton_actionAdapter implements ActionListener {
        private RunApplet adaptee;
        private String programPath;
        RunApplet_jButton_actionAdapter(RunApplet adaptee, String programPath) {
            this.adaptee = adaptee;
            this.programPath = programPath;
        public void actionPerformed(ActionEvent e) {
            try {
                Runtime.getRuntime().exec(this.programPath);
            } catch (IOException ex) {
    }And my applet code
    <html>
    <body>
    <!--"CONVERTED_APPLET"-->
    <!-- HTML CONVERTER -->
    <object
        classid = "clsid:CAFEEFAC-0015-0000-0005-ABCDEFFEDCBA"
        codebase = "http://java.sun.com/update/1.5.0/jinstall-1_5_0_05-windows-i586.cab#Version=5,0,50,5"
        >
        <PARAM NAME = CODE VALUE = "applet.RunApplet.class" >
        <PARAM NAME = ARCHIVE VALUE = "myfile.jar" >
        <param name = "type" value = "application/x-java-applet;jpi-version=1.5.0_05">
        <param name = "scriptable" value = "false">
        <comment>
         <embed
                type = "application/x-java-applet;jpi-version=1.5.0_05" \
                CODE = "applet.RunApplet.class" \
                ARCHIVE = "myfile.jar"
             scriptable = false
             pluginspage = "http://java.sun.com/products/plugin/index.html#download">
             <noembed>
                </noembed>
         </embed>
        </comment>
    </object>
    <!--
    <applet CODE = "applet.RunApplet.class" ARCHIVE = "myfile.jar">
    </applet>
    -->
    <!--"END_CONVERTED_APPLET"-->
    </body>
    </html>Creating my key:
    keytool -genkey -alias sitekey -keystore "C:\Program Files\Java\jdk1.5.0_05\jre\lib\security\cacerts"Now the process of creating the jar file and signing it:
    1. jar cf myfile.jar *.class
    2. jarsigner -keystore "C:\Program Files\Java\
    jdk1.5.0_05\jre\lib\security\cacerts" myfile.jar sitekeyNow this is the way i've been using then and the first time i get the "do you want to trust" screen but still i get a security exception.
    Exception in thread "AWT-EventQueue-10" java.security.AccessControlException: access denied (java.io.FilePermission <<ALL FILES>> execute)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkExec(Unknown Source)
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at applet.RunApplet_jButton_actionAdapter.actionPerformed(RunApplet.java:73)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Is there anybody who have an idea what can be wrong?
    regards
    thallish

    ok i solved i myself. i assigned a different and thereby correct keystore and now it works like it should
    regards
    thallish

  • Hi i was told to come to the support with the error number 16.... for some reason my premiere pro stopped working and i am still paying for i but i had to reinstall it, which i dont know how to do though

    hi i was told to come to the support with the error number 16. for some reason my premiere pro stopped working and i am still paying for i but i had to reinstall it, which i dont know how to do though

    Hi Omid,
    Please refer to the help document below to fix the error 16:
    Configuration error 16 | CC, CS
    If the issue persists, please contact the support:
    Contact Customer Care
    Regards,
    Sheena

  • HT1349 I have icloud on my pc with windows vista.  Recently, upon startup I receive an error that says applephotostream.exe has stopped working.  Windows will close this problem . . . any suggestions.  I tried to download the control panel again. no luck

    I have icloud on my pc with windows vista.  recently, upon startup I get a message that says applephotostream.exe has stopped working.  Windows will close this program  . . . I tried re-installing the icloud control panel, etc.  to no avail.  any leads?

    Hi, I have the same problem. Has anyone come forward with any advice on fixing the problem?

  • Transferring photos from my Nikon coolpix s7c  to my mac causes a "communications error" with the camera and will not transfer photos as it has done in the past. Seems to have stopped working with my Mac Lion upgrade?

    iphoto has stopped transferring my photos from my Nikno coolpix s7c camera. Seems like it stopped when I upgraded to Lion? It continues to work with a PC?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • HT4623 Having trouble with emails.  Cannot delete takes a long time for them to delete.  Gets stuck and frozen.  What is the problem

    Can anyone tell me if they are having the same problem?  Frozen in icloud emails for a long time.

    Close all apps in Multi-Task window and try again.
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • TS2634 I'm having trouble with my wireless keyboard, it isn't locating the iPad. I'm not seeing anything in my guide to help me.

    If anyone can help me set up my wireless keyboard to my iPad 2 that would be great. I am excited to use it now that it has arrived. It didn't come with detailed instructions and I'm not finding anything on the website of in the other guide to help me. Thank you!

    You need to find a CDMA carrier  in the UK and see if they offer iPad data plans.  If not, you can sell it and get a GSM iPad the one that uses SIM cards (the AT&T version here in the USA).

  • Anyone having trouble with their calendar? I just lost 3/4 of the info I had for 2012 and 2013?

    I was just adding a date into my calendar and I all of a sudden lost 75% of the info I had in there for 2012 and 2013? Any one have any ideas?

    System data is the OS or operating system.  That is where the recovery stays separated from the rest of the storage so that it doesn't get corrupted.  It is not accessible and non-movable.

  • I am having trouble getting rid of tabs. They appear everytime I launch Firefox. I must have clicked "Save and Quite" at some point in time. Any suggestions would be GREATLY appreciated!

    For instance, there is a Facebook tab of a page I visited a long long time ago.

    This can be a problem with the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete the files sessionstore.js and sessionstore.bak and any existing files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js .
    See http://kb.mozillazine.org/Session_Restore

  • Ford Sync and my Iphone4s are having issues. When I receive a call, it goes into privacy mode. I have searched ford's site. But still no answers. Any suggestions?

    Ford Sync and my iphone4s are having one major issue. When I receive a call, it goes into privacy mode. I have been on Ford's web site and no one knows the answer. It is just when I receive calls. What to do? I have used a Blackberry Storm 2 in this same vehicle and no problems.

    Thanks for the quick resonse Kilted Tim. Are you from Scotland? My wife is.
    I decided to try to do two things this morning to resolve this privacy problem. The first is, I restored my wife;s phone from itunes--in spite of the fact that the Apple tech at the Genius Bar in Tampa said that reloading the firmware is not the problem and it must be Ford. This took about 15 minutes to download, restore and verify. One must resist the temptation to disconnect the phone because I had a popup by the system tray ( I'm using Win7) that said I can now use the phone but itunes was still doing stuff so I just let it do it's thing until it (itunes)  told me to use the phone.  Went down to the car and my privacy issue is resolved.
    I also went to syncmyride to download the version checker. A word of advice this does not work well if at all on google Chrome. I went to Explorer and it worked fine. I was on a chat line about a week ago and was told that google Chrome will work with syncmyride.com. So much for their knowledge.

Maybe you are looking for