Jave 7.21 asking to block or not block.

Jave 7.21 asking to block or not block. I press do not block and it still blocked how do I solve this problem

Jave 7.21 asking to block or not block. I press do not block and it still blocked how do I solve this problem

Uninstall all Java runtime environments you have installed.
 
Reset.
 
Download and install just the latest 32-bit version (as it is likely that you use, or you can use the 32-bit browser):
http://javadl.Sun.com/webapps/download/AutoDL?BundleId=76860
 
Reset.
 
Not better?
 
If this isn't the case - what is the exact message that you receive - including the text of the upper part of the window that gives you the rest of the text - verbatim?

Tags: Windows

Similar Questions

  • My new banking partner asks a question have not found an answer to. Firefox support encryption?

    My new banking partner asks a question have not found an answer to Firefox support encryption?

    Of course, it does.

    https://support.Mozilla.org/en-us/KB/how-do-i-tell-if-my-connection-is-secure

  • Printers / HP Photosmart 5520: my printer asked a password am not able to find the password or reset an another pls help

    my printer was asking a password am not able to find the password or reset an another pls help

    I've used it since December when I bought the printer, but I just changemy internet company

    It was when he said ask for password which i don't remember not pls help.

    I can be paid to [personal information deleted]

    Hi @funmi09

    I want to help you set up your printer for your internet company recently changed. This document provides the steps necessary to find the WEP key or WPA or your wireless network password.

    Once you retrieve your password, the following will help you to configure the printer; Connection of the printer after you have changed your wireless network.

    If you still can't find your password, you will need to contact your ISP (internet service provider).

    I hope this helps.

  • I've set up the virtual machine in win 7 Ultimate and put some data. Now when I try to connect it asks password and does not accept any password.

    Default password Machine virtual XP Mode

    I've set up the virtual machine in win 7 Ultimate and put some data. Now when I try to connect it asks password and does not accept any password. Please giveme the default password

    If you're talking about XP Mode the default password is XPMUser.  In general you can not use Windows without a password in Windows Virtual PC that you can with Virtual PC 2007 and before.  XPMUser is used only with the XP Mode virtual machine.  All other virtual machines requires a user created password.  If you have changed the password in XP Mode and forgotten, then you have to start over.

    Windows Virtual PC is based on virtual server rather than VPC and all virtual machines need a password.  If necessary, uninstall the integration features, start the virtual machine and create a password for the admin user.  Restart the virtual machine, and then reinstall the integration features.  You will not be able to access a virtual machine created by the user that has no password, while the integration features are installed.  Once you have everything right, that a virtual machine will not be asked a password if you are the admin user in Windows 7.

    @george1009,.

    Everything got?  :)

  • java.lang.IllegalArgumentException: URL invalid or resource not found

    I tested this code:
    import javafx.application.Application;
    import javafx.geometry.Insets;
    import javafx.geometry.Pos;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    
    public class DX57DC extends Application
    {
    
        public static void main(String[] args)
        {
            Application.launch(args);
        }
    
        @Override
        public void start(Stage primaryStage)
        {
    
            // Image
            Image image = new Image("dialog-information.png");
            ImageView imageView = new ImageView();
            imageView.setImage(image);
    
            // Text
            Text t = new Text();
            t.setText("Do you want to quit?");
    
            // Buttons
            Button btnYes = new Button("Yes");
            Button btnNo = new Button("No");
            btnYes.setStyle("-fx-background-color:\n"
                    + "        #090a0c,\n"
                    + "        linear-gradient(#38424b 0%, #1f2429 20%, #191d22 100%),\n"
                    + "        linear-gradient(#20262b, #191d22),\n"
                    + "        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));\n"
                    + "    -fx-background-radius: 5,4,3,5;\n"
                    + "    -fx-background-insets: 0,1,2,0;\n"
                    + "    -fx-text-fill: white;\n"
                    + "    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );\n"
                    + "    -fx-font-family: \"Arial\";\n"
                    + "    -fx-text-fill: linear-gradient(white, #d0d0d0);\n"
                    + "    -fx-font-size: 12px;\n"
                    + "    -fx-padding: 10 20 10 20;");
    
            btnNo.setStyle("-fx-background-color:\n"
                    + "        #090a0c,\n"
                    + "        linear-gradient(#38424b 0%, #1f2429 20%, #191d22 100%),\n"
                    + "        linear-gradient(#20262b, #191d22),\n"
                    + "        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));\n"
                    + "    -fx-background-radius: 5,4,3,5;\n"
                    + "    -fx-background-insets: 0,1,2,0;\n"
                    + "    -fx-text-fill: white;\n"
                    + "    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );\n"
                    + "    -fx-font-family: \"Arial\";\n"
                    + "    -fx-text-fill: linear-gradient(white, #d0d0d0);\n"
                    + "    -fx-font-size: 12px;\n"
                    + "    -fx-padding: 10 20 10 20;");
    
            // Buttons layout
            HBox hbox = new HBox(8); // spacing = 8
            hbox.setStyle("-fx-padding: 15; -fx-font-size: 15pt;");
            hbox.getChildren().addAll(btnYes, btnNo);
            hbox.setAlignment(Pos.BASELINE_RIGHT);
    
            BorderPane bp = new BorderPane();
            bp.setStyle("-fx-background-color: linear-gradient(#ffffff,#f3f3f4);\n"
                    + "    -fx-border-width: 1 1 1 1;\n"
                    + "    -fx-border-color: #b4b4b4 transparent #b4b4b4 transparent;\n"
                    + "    -fx-font-size: 1.083333em;\n"
                    + "    -fx-text-fill: #292929;");
    
            bp.setPadding(new Insets(10, 20, 10, 20));
            //Button btnTop = new Button("Top");
            bp.setTop(null);
            //Button btnLeft = new Button("Left");
            bp.setLeft(imageView);
            //Button btnCenter = new Button("Center");
            bp.setCenter(t);
            //Button btnRight = new Button("Right");
            bp.setRight(null);
            //Button btnBottom = new Button("Bottom");
            bp.setBottom(hbox);
            Scene scene = new Scene(bp, 500, 200);
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    }
    I get this error:
    Executing com.javafx.main.Main from /home/rcbandit/Desktop/test/DX-57DC/dist/run1951682008/DX-57DC.jar using platform /opt/jdk1.8.0/bin/java
    Exception in Application start method
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:491)
         at com.javafx.main.Main.launchApp(Main.java:642)
         at com.javafx.main.Main.main(Main.java:805)
    Caused by: java.lang.RuntimeException: Exception in Application start method
         at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:403)
         at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:47)
         at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
         at java.lang.Thread.run(Thread.java:724)
    Caused by: java.lang.IllegalArgumentException: Invalid URL: Invalid URL or resource not found
         at javafx.scene.image.Image.validateUrl(Image.java:986)
         at javafx.scene.image.Image.<init>(Image.java:538)
         at com.dx57dc.main.DX57DC.start(DX57DC.java:28)
         at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
         at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:215)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:179)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:176)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         ... 1 more
    Caused by: java.lang.IllegalArgumentException: Invalid URL or resource not found
         at javafx.scene.image.Image.validateUrl(Image.java:979)
         ... 12 more
    Java Result: 1
    Deleting directory /home/rcbandit/Desktop/test/DX-57DC/dist/run1951682008
    jfxsa-run:
    BUILD SUCCESSFUL (total time: 3 seconds)
    I placed the image file next to the java source code file, but the file is not found. Can you tell me how to solve this problem?

    Replace

    Image image = new Image("dialog-information.png");
    

    with

    Image image  = new Image(getClass().getResourceAsStream("dialog-information.png "));
    

    Do not forget to clean, and then build the project.

  • I have an outdated Java plugin (1.6.0_43) that will not turn on, get the error window

    I have to use an outdated Java plug-in in order to use a system on my desk. The Java plug-in is 1.6.0_43. I have the plug-in installed in my java, but whenever I try to open the site I went to the window of the image as an attachment. How can I make Firefox open this plug-in?

    If Java works to make the Web site when you use IE or Chrome, then use these browsers instead of Firefox in this Web site.

    IMO, Oracle offers users the "hammer and anvil" by not updating their own applications use Java 7 or 8. In so doing, it blocks their users using older versions of Java 6 for all programs on the PC and leaving them exposed to be exploited unnecessarily. I don't know how IE or Chrome handle [and don't care] Java 6 using a different type of API plugins - whether if they allow multiple versions of Java must be installed, or not.

  • "Send your request" / "Ask in person" does not work

    Since yesterday, the possibility to request the allocation of sites using Windows Live Family Safety has not worked for me. When you try to access a page, standard "this page is blocked" page, as well as buttons for "Send your request" and "ask in person. However, nothing happens when you press one of these keys.  This has been fully functional for a while now, and I made no changes to my computer or all parameters in the days following the resulting problem. This is particularly problematic because I meet this guest near-constantly, caused by the automatic blocking of the parental control of pages in a blocked area.  (For example, if I want to block only the homepage of www.something.com, but want to access www.something.com/anotherthing, I have to manually turn it on each page. The way in which certain function of forums, even taking into account the Subforums forces me to unlock every message that I do, because the URL for the subforum will be www.something.com/anotherthing while the posts will be www.something.com/individualthread1234567. If there is a way around this problem and blocking only the home page, I would be very grateful to hear, as it has been a thorn in my side for a while).

    It seems that the problem has been corrected.

    I can't say for sure, but this is fixed because of a new update - http://support.microsoft.com/kb/3025390 ("some web application modal dialog boxes do not work correctly in Internet Explorer 11 after you install the update of 3008923") because it's the only one update since I reported the problem, and he noted a similar problem.

    The only thing is that this hotfix corrects a hotfix that was released 11 dec.  We have had this problem since October/November, so this correction can just inadvertently be fixing the issue of the safety of the family.  Microsoft has still not acknowledged the problem reported in this post.  In addition, the page of the application still does not seem to load completely - the upper pane is always truncated.  But at least the buttons work now and in person window opens and works, and e-mail is also sent if this option is selected.

  • Java Applet constantly asked for authentication

    With having an application of ADF on Weblogic 10, with occasional access to a Java applet. The Java applet is loaded whenever this is necessary and not charge whenever it is not in a facet. The applet is currently in the folder public_html/applet.

    When we define the SSL configuration to require a client certificate when the Java applet loading, it will constantly ask a client certificate even if the user has already presented to the client by hitting the site:

    Identification of the required authentication request. Select the certificate to use for authentication.

    It's annoying for users and the Java Applet requires no authentication. Is it possible that we can disable authentication or remove the prompt?

    Here's the code included:

    <applet height="1" width="1" code="applet.Applet.class"archive="/app/applet/SApplet.jar" /><param name="permissions" value="all-permissions"/></applet>

    Things I've tried:

    (1) configure the Applet on HTTP instead of HTTPS; I get a warning about mixed content and still get authentication pop up.

    (2) created a small applet that only types "HELLO World" in the console, still get authentication pop up

    Here's the console window:

    Java plug-in 1.6.0_35

    With the help of 1.6.0_35 - b10 version JRE Java hotspot Client VM

    Home Directory user = C:\Users\mfan

    Security: property value package.access Sun., com.sun.xml.internal.ws., com.sun.xml.internal.bind., com.sun.imageio., com.sun.org.apache.xerces.internal.utils., com.sun.org.apache.xalan.internal.utils.

    Security: property package.access nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws

    Security: property value package.access Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws

    Security: property package.access nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy

    Security: property value package.access Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy

    Security: property package.access nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy, com.sun.jnlp

    Security: property value package.definition Sun., com.sun.xml.internal.ws., com.sun.xml.internal.bind., com.sun.imageio., com.sun.org.apache.xerces.internal.utils., com.sun.org.apache.xalan.internal.utils.

    Security: property package.definition nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws

    Security: property value package.definition Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws

    Security: property package.definition nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy

    Security: property value package.definition Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy

    Security: property package.definition nine value Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy, com.sun.jnlp

    Security: property value package.access Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy, com.sun.jnlp

    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss

    Security: property value package.definition Sun.,. com.sun.xml.internal.ws,. com.sun.xml.internal.bind,. com.sun.imageio,. com.sun.org.apache.xerces.internal.utils,. com.sun.org.apache.xalan.internal.utils, com.sun.javaws, com.sun.deploy, com.sun.jnlp

    security: property package.definition new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss

    Basic: additional progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@1df073d

    base: Plugin2ClassLoader.addURL parent called to https://192.168.130.99/app/applet/HelloWorld.jar

    network: cache entry not found [url: https://192.168.130.99/app/applet/HelloWorld.jar, version: null]

    network: connection https://192.168.130.99/app/applet/HelloWorld.jar with proxy = LIVE

    network: connection http://192.168.130.99:443 / with proxy = LIVE

    Security: loading Root CA certificates to C:\Program Files (x 86) \Java\jre6\lib\security\cacerts

    Security: support of root CA certificates from C:\Program Files (x 86) \Java\jre6\lib\security\cacerts

    Security: SSL CA root certificates of C:\Users\mfan\AppData\LocalLow\Sun\Java\Deployment\security\trusted.jssecacerts loading

    Security: support of C:\Users\mfan\AppData\LocalLow\Sun\Java\Deployment\security\trusted.jssecacerts SSL root CA certificates

    Security: loading SSL CA root certificates to C:\Program Files (x 86) \Java\jre6\lib\security\cacerts

    Security: support of certificates of CA root SSL from C:\Program Files (x 86) \Java\jre6\lib\security\cacerts

    Security: the deployment of C:\Users\mfan\AppData\LocalLow\Sun\Java\Deployment\security\trusted.jssecerts loading SSL certificates

    Security: support of the deployment of C:\Users\mfan\AppData\LocalLow\Sun\Java\Deployment\security\trusted.jssecerts SSL certificates

    Security: loading of the deployment session certificate store certificates

    Security: charge of the deployment session certificate store certificates

    Security: loading of the ROOTS of the Internet Explorer certificate store certificates

    Security: charge of the ROOTS of the Internet Explorer certificate store certificates

    Security: checking if the certificate is denied deployed certificate store

    Security: checking if the certificate is in the deployment session certificate store

    Security: check if the SSL certificate is in the permanent deployment certificate store

    Security: KeyUsage does not allow for digital signatures

    (and here's the guest comes in to the top).

    In fact, if archive http://URL works fine. No longer request authentication here.

  • iCloud family ask to buy does not raise my child or myself

    I put iCloud in place with a family, and my children are set to "ask to buy." but a child is up to present unable to 'buy' the app Swift Playgrounds, presented by Apple as part of anyone can learn to code.  I saw the app application process works before, where a child can apply and I are invited to approve or deny approval allows the automatic download on the device of my child.

    However, today, it's different for a child.  I had a case of work, where a child was called Swift playgrounds, Apple app and it worked as expected: ask to buy, I was invited and I approved and have downloaded.  Another child on another device also wanted Swift playgrounds, but he stopped without going through the process.  He clicked on 'Get', then click 'Install', and that's when he to tell him that he must ask to buy [all]; but it doesn't work.  Get/install button turns into a circle of spinning forever.  If it closes at the app store and it again then the same result happens.  I went to settings and click on iCloud and clicked on his name, but I get a circle of rotation.  I went to 'iTunes and App Store' and disconnected and then back in and restarted but still without success.  Now if I go back it won't let me sign him out of his iTunes Apple ID & settings App Store (its name is now grey, not clickable as before).

    I tried to use iTunes to install the app from Swift Playground on his device, but it gave an error that would not install it.

    I managed to solve this problem:

    • Disconnect from the iCloud
    • Restart (because it would not allow the opportunity to sign out of the App Store until the reboot)
    • Disconnect from the iTunes and App Store
    • reset
    • Settings > > General > > reset > > reset all settings
    • reset
    • Reconnect to iCloud and also back in iTunes and App Store
    • Open the App Store and find Apple Swift Playground: Get > > install > > give the password for the Apple ID > > permission

    Thus, reset all settings was the only way I could put it.  GRR!  But * sigh * (finally)

  • First of all, much too darn hard to actually get to a zone forum or contact actually ask a question. Not everyone using FF is a programmer

    How should a user like me (been using ff for 7 years and more) 4 different pages to actually get one to ask a question? Seriously, IE has a better access to the support forums. Now on my real problem. I have a lot of seize up / crashing related to flash player 11, and even the latest version of flash (and yes I have uninstalled all older versions) read like a stale version. Not there at - there no way to get ff to actually work simultaneous flashing or am I just doomed to run chrome instead? Wouldn't a hardware problem because it is just ff (same IE works better at this point), but Acer Aspire 7741z with W7 (and yes I know it's an archaic system but specs are still up to current).

    Rather a longshot but if you think of the Flash problems can cause this

  • A web wiget using java acript in my web site is not displayed with Firefox, but done with ie; How can I solve this problem?

    I have inserted a java script web wiget on my web site by copy and paste. It works fine under IE (shows, updates of data etc.). It's not even showing up in FFox and no error message is given. If I look at the code in FFox, it is shown. Is there a problem with my website, or am I short something in FFox?

    I hope I'm not violating any policy by posting the code here:

    It's your source offered optional code. It seems to work in all my browsers. Firefox can't love the tags 'object' for some reason any.

    < embed src =http://ActionAmerica.org/flash/gsdCount.swf width = 240 height = 175 wmode = transparent type = application/x-shockwave-flash > < / embed >

    (I edited it because I posted the wrong code the first time.)

    I tried in Chrome, IE 10 and Firefox Aurora (the alpha version of Firefox). Aurora works just fine, by the way.
    Security settings for IE 10 did approve the execution of the script and it does not appear until I clicked on where it should be, but I use Windows 8 and it seems to have an unlimited number of bugs. It should probably appear on your XP machine.

  • To access a particular Web site, I need to use Java 6 u 37, but Firefox does not allow me to, because it is obsolete. How can I do?

    I downloaded the update of Java 6 37, but Firefox does recognize it not as a plug-in and so not even give me the option to activate it. There is no work around for this?

    Firefox is a 32-bit application, so make sure that you have installed the 32-bit Java program and that Firefox can find its plugins.

  • When I try to connect to the wireless router, it asks you the password I put it and he then asked again and will not accept the password. all other computers (without windows 7) connect correctly.

    My new computer has windows 7 when I try to connect it to my router it ask the password, then he asks the network password I put in the same password and it does not accept it. I spent ove an hour on the phone with a very helpful and confused expert to the Virgin. He tells me that the password only I need to communicate with the router is the main. We tried a lot of things all very technical and finally he gave up. Other computers with vista on connect very well with no problems at all.

    The network is fine and all the settings are fine. Occasionally, it connects via a home network but then it stops. When I try to communicate with the printer wireless signal stops and starts.

    I don't hold much hope of a response that experts were left very confused by this first abandoned after 45 minutes and the second lastered over an hour are totally flumaxed and blame windows 7

    But everyone told me that windows 7 was supposed to be the best

    Your post has nothing to do with the Windows Update feature (compared to the upgrade of Windows). Please repost it here for assistance: http://social.answers.microsoft.com/Forums/en-US/w7network/threads ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • MG5600 iphone app Canon printer ask qr code could not be found

    Downloaded iphone app from Canon to print & scan. He asked to scan QR code or the Code of connection.

    I can not find anything to print from the cloud on my printer settings.

    I need to have this work soon as I will work on the road and take my printer and I don't have time to mess around with the clients network problems ect.

    Where is this?

    Hi joanwilkins,

    Canon printing and scanning software is not compatible with the PIXMA MG5600 printer.  Instead, we recommend that you use the app to PRINT Canon inkjet ink/SELPHY, available for download on the Apple app store.  Once the application is downloaded, please follow the steps located here to print using the app and here to scan using the application.

    If you need more assistance, please call 1-866-261-9362, Monday - Friday 10:00 - 10 pm et (excluding holidays) and a technical support representative Cannon will be happy to help you.  There is no charge for this call.

  • How to activate java tm platfrom when mozilla blocks it-trying to load Pogo games

    I have reinstalled and uninstalled java, tried to activate java plug-ins, but mozilla keeps blocking my java platform™. When you try to load pogo games, I get a message error loading game. Help, please.

    Hi Ana,

    ·         Have you tried to use the link on Internet Explorer?

    If the problem is limited to Mozilla Firefox, I suggest you to connect with the help of Firefox.

Maybe you are looking for

  • System update is available in the home network only

    Given that the demand for services of motorola update is updated through google game store I get error message "system update is available in the home network only" whenever I check for the update. Is there any method to disable this error so that I

  • Is - this support for Windows 2008 server

    Here is, it supports to windows server 2008.

  • How can I enable auto standby stop?

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to solve the problem

  • wbamdin start recovery says: wrong version of windows!

    I'm trying wbadmin restore a volume. When I try to use the statement: wbadmin start recovery, I get a "bad version of windows error. Any ideas? Thank you.

  • Install XP Pro on a nc8430

    I try to install XP PRO on a computer from Compaq nc8430 and have had the same results with 2 different drives. The status line shows all first, there is a 300 GB drive, then it passes to 3.9 GB. It is with the SATA Native mode disabled in the BIOS.