Can't get two same printers (MG5420) work on same home wireless network

I bought another MG5420 this week and tried to setup it on my home wireless network.  It is on wireless network.  However, canon printing utility seems couldn't find it and it always go to the original one(old).  How do I make both of them work on the same time?
Thanks for your help in advance.
Solved!
Go to Solution.

Canon Support,
Thanks for your quick response. I am using Windows 7 and canon printing utility was newly installed on this pc.  If I connect this printer to the PC with USB cable, it works fine(of course). I used printer panel to setup wireless connection through WPS and it seems fine(wireless connection signal on the printer is solid blue). If you need any more details, please let know.  Thanks,.

Similar Messages

  • I just got a new itouch and i can't get imessage or facetime to work on my home network

    I just got a new itouch 4 and i can't get imessage and facetime to work on my home wifi network (Airport Express). I can't explain it. The itouch works fine otherwise uncluding the internet. Facetime and imessage work at the apple store so there must be something wrong with my home network. Please help if you can!
    iPod touch, iOS 5.0.1

    I changed the DNS to 8.8.8.8 as you suggested with no success, I even tried 8.8.8.8, 8.8.4.4 as suggested by others with no success either.  When I try and activate iMessage or Facetime, I still get the same message "could not sign in, please check your network connection".  The internet and Mail work perfectly fine on the iPod touch so the WiFi signal IS going through.  I am at a loss, any other suggestions would be more than welcome. Thanks!

  • Can not get two AS2 scrollers to work on same page.

    Hi.
    I really like this particular scroller I used at the bottom of the page here:
    http://steamandclean.com
    Now I need to use two instances of it side by side on another page and can not get it to work.
    I have tried:
    Having same code twice in frame 1 unchangend.
    Having two instances of all the code but with renamed variables and instance names throughout the code.
    Having each scroller in their own movie clip and then add them both to the scene.
    Having a master fla with the background and importing two separate swfs with each their own scroller - they work independantly but when they import to the same page one of them will not work.
    Here is the AS2 I am using:
    Left scroller:
    fscommand("allowscale", "true");
    bar.useHandCursor = dragger.useHandCursor=false;
    space = 20;
    friction = 0.9;
    speed = 4;
    y = dragger._y;
    top = main._y;
    bottom = main._y+mask_mc._height-main._height-space;
    dragger.onPress = function() {
              drag = true;
              this.startDrag(false, this._x, this._parent.y, this._x, this._parent.y+this._parent.bar._height-this._height);
              scrollEase();
    dragger.onMouseUp = function() {
              this.stopDrag();
              drag = false;
    bar.onPress = function() {
              drag = true;
              if (this._parent._ymouse>this._y+this._height-this._parent.dragger._height) {
                        this._parent.dragger._y = this._parent._ymouse;
                        this._parent.dragger._y = this._y+this._height-this._parent.dragger._height;
              } else {
                        this._parent.dragger._y = this._parent._ymouse;
              scrollEase();
    bar.onMouseUp = function() {
              drag = false;
    moveDragger = function (d) {
              if ((dragger._y == y+bar._height-dragger._height && d == 1) || (dragger._y == y && d == -1)) {
                        clearInterval(myInterval);
              } else {
                        dragger._y += d;
                        scrollEase();
                        updateAfterEvent();
    up_btn.onPress = function() {
              myInterval = setInterval(moveDragger, 18, -1);
    down_btn.onPress = function() {
              myInterval = setInterval(moveDragger, 18, 1);
    up_btn.onMouseUp = down_btn.onMouseUp=function () {
              clearInterval(myInterval);
    MovieClip.prototype.scrollEase = function() {
              dragger.onEnterFrame = function() {
                        if (Math.abs(dy) == 0 && drag == false) {
                                  delete this.onEnterFrame;
                        r = (this._y-y)/(bar._height-this._height);
                        dy = Math.round((((top-(top-bottom)*r)-main._y)/speed)*friction);
                        main._y += dy;
    Right scroller
    fscommand("allowscale", "true");
    bar2.useHandCursor = dragger2.useHandCursor=false;
    space = 20;
    friction = 0.9;
    speed = 4;
    y = dragger2._y;
    top = main2._y;
    bottom = main2._y+mask_mc._height-main2._height-space;
    dragger2.onPress = function() {
              drag = true;
              this.startDrag(false, this._x, this._parent.y, this._x, this._parent.y+this._parent.bar2._height-this._height);
              scrollEase();
    dragger2.onMouseUp = function() {
              this.stopDrag();
              drag = false;
    bar2.onPress = function() {
              drag = true;
              if (this._parent._ymouse>this._y+this._height-this._parent.dragger2._height) {
                        this._parent.dragger2._y = this._parent._ymouse;
                        this._parent.dragger2._y = this._y+this._height-this._parent.dragger2._height;
              } else {
                        this._parent.dragger2._y = this._parent._ymouse;
              scrollEase();
    bar2.onMouseUp = function() {
              drag = false;
    movedragger2 = function (d) {
              if ((dragger2._y == y+bar2._height-dragger2._height && d == 1) || (dragger2._y == y && d == -1)) {
                        clearInterval(myInterval);
              } else {
                        dragger2._y += d;
                        scrollEase();
                        updateAfterEvent();
    up_btn2.onPress = function() {
              myInterval = setInterval(movedragger2, 18, -1);
    down_btn2.onPress = function() {
              myInterval = setInterval(movedragger2, 18, 1);
    up_btn2.onMouseUp = down_btn2.onMouseUp=function () {
              clearInterval(myInterval);
    MovieClip.prototype.scrollEase = function() {
              dragger2.onEnterFrame = function() {
                        if (Math.abs(dy) == 0 && drag == false) {
                                  delete this.onEnterFrame;
                        r = (this._y-y)/(bar2._height-this._height);
                        dy = Math.round((((top-(top-bottom)*r)-main2._y)/speed)*friction);
                        main2._y += dy;
    If needed I can upload the fla files, but I see no option to attach a file
    Thank you on beforehand!
    ggaarde

    You should only have one set of code, forget the second set you created.  You could even have just one movieclip where you load the "main" portion into it dynamically.  But for the moment I expect you will create one movieclip using your first set of code, replacing the last function....
    MovieClip.prototype.scrollEase = function() {
              dragger2.onEnterFrame = function() {
                        if (Math.abs(dy) == 0 && drag == false) {
                                  delete this.onEnterFrame;
                        r = (this._y-y)/(bar2._height-this._height);
                        dy = Math.round((((top-(top-bottom)*r)-main2._y)/speed)*friction);
                        main2._y += dy;
    with what I showed in the last posting.
    For the second scroller movieclip just create a copy of the first one in the library and only change whatever content goes into the "main" movieclip.
    Afterwards challenge..... If you want to have just one movieclip that you use for both then you could create the two content sections as movieclips in the library and use the attachMovie function to load each one in to its own scroller.

  • Can't get two airport expresses to work simultaneously

    Just added a second airport express (both 802.11n, both updated) solely to listen to music from iTunes. Non apple router. Both are working fine separately with green light on but when I try to play through both at once (using "multiple speakers") there are long disruptions or "drop outs" after a few seconds of playing.
    Can anyone please help. Thanks in advance.

    Welcome to the discussions!
    You will need to do some troubleshooting to see if you can isolate the cause for the drop outs. Since the troubles began when you added the second Express, move the second device close to your router and plug in a pair of headphones to see if the signal is steady at that location. If so, move the Express further away in several steps. Keep testing at different locations. If you start to hear the drop outs, that would indicate one of two things:
    1) There is not adequate wireless signal strength in the area where the 2nd Express is located. You might investigate to see whether your router manufacturer offers a wireless extender to provide more signal strength in a remote location. It is also possible to connect the Express to your router using ethernet. If you can't run an ethernet cable to the Express location, take a look at ethernet powerline adapters to accomplish the same task.
    2) Interference from a cordless phone or another wireless network is causing problems. Download Air Radar and use it's Scan function to locate other wireless networks in your area. The application is not free, but there is a free trial period. If you see any other networks on a close channel to your wireless network, change the wireless channel on your wireless router to another channel that is as far away as possible from the channels you see.

  • Can't get Officejet Pro 8500A to print using a Bigpond wireless network

    I phoned Bigpond for assistance and was told that the HP OfficeJet Pro 8500A needs to use a wireless router.  Is this the case?  I reinstalled the HP software on the computer but when I selected the Router/Wireless connection wasn't able to detect the network, even though I was logged on to Bigpond.  Would appreciate assistance please.

    Hi Ruski,
    Wireless is just one of three ways you can have the printer attached for printing from your computer. I am unaware specifically what Bigpond is, however a few questions would narrow down which connection type would be optimum:
    What devices do you want to print from?
    Do you have an established wireless network at your home/business where the printer is?
    Are you wanting to use the web services of your printer (ePrint, AirPrint, or Print Apps)?
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Wifi not working on BT Home wireless network

    Can anyone help? I have contacted Apple, who suggested the problem lies with BT. I have contacted BT - surprise, surprise, the problem lies with apple! I have a BT wireless broadband that works fine with my home computer. My iphone, which works in all other respects, can't get on to this network. It recognises that the network exists, I can "join" it, and the wifi symbol appears at the top of the iphone screen, but when I try to access the internet it either reverts to Edge (if there is sufficient signal) or a "can't find server" error message appears.
    In "settings" the ip address begins "169", which I believe is wrong, but can't see how to fix it.
    Many thanks

    ok jpaddle i think i might have solved it.
    the password you need to use is not any of the passwords that you normally use to access the internet from your home computer. rather, the password you use is one of the "wireless key" numbers which are printed on the back of the white plastic HomeHub box.
    but first you will have to reset the password settings on your iphone. this is how to do it.
    1. on your iPhone, go into "settings". then go into "wi-fi". with "wi-fi" switched on, choose the network that you want to join [ie your BT Homehub]. press the blue arrow directly on the right hand side of your chosen network. this will take you into the settings of your chosen network. press "forget this network".
    you have now reset the password settings for this network.
    2. go back to the screen where you can choose your network. choose your BTHomeHub network again. it will ask for your password [again].
    3. the password that you should enter is the "Wireless Key" serial number [a set of letters and numbers] of "BT HomeHub Wireless Settings" - this password is printed in a grey area on the back of the white plastic Homehub Box.
    ie you do not enter the password that you normally use to access the HomeHub settings as an administrator,
    you do not enter the password that your wireless home computer normally uses to access the internet via the Homehub, and
    you do not use the "wireless key" in "BT Fusion Settings" [which is also on the back of the Homehub plastic box but in a white square...]

  • I can not get my wi-fi to work away from home. what security do i need to use confused

    i don't understand wi-fi

    Go to Settings>Wi-Fi.  At the bottom, make sure the "Ask to Join Networks" is ON.  When you are out and about, any network the iPad sees will be shown and it will ask you if you want to "Join" it.  If it is unsecure/free you tell it yes and you should connect.  However, if there is a little padlock looking icon shown with the network name, it means that it is a secure network and you need a password to join.  If you don't know it, you can't join.  At most Starbucks and such, the Wi-Fi is free and you should be able to simply connect.  Not really that hard.  There are not security settings on your iPad to adjust.  You'll figure it out.
    Best.

  • My InDesign document has two page 1s and I can't get the page numbers to work.  Help!

    My InDesign document has two page 1s and I can't get the page numbers to work.  Help!  How do I fix this?

    Do you mean the first section is starting at page one?
    And the second one now is starting at page two?
    So I would ask why you would need sections at all?
    Did you set the controls for Automatic Page Numbering?
    If you select the particular page where section two is starting in the Pages Panel, you could untick the Start Section option in the numbering and section dialog. That would remove the section. You cannot do that with the very first section, but you should set the first section to Automatic Page Numbering if you ever want to use your document with an inDesign book file.
    Uwe

  • I am having same problem with apple tv need 4.4 version and can not find solution this a brand new product out of box yesterday why would it not already have updated version. I am getting frustrated that I can not get this mirroring icon to work. I

    I am having same problem with apple tv need 4.4 version and can not find solution this a brand new product out of box yesterday why would it not already have updated version. I am getting frustrated that I can not get this mirroring icon to work. I have tried all suggestions in this thread and nothing works. I also hooked up to laptop through iTunes with micro USB nothing!!!

    The new appletv software came out 2 or 3 days ago, how would Apple get it on the device in the box in a store?
    Why don't ou update the appletv software?

  • I need to use an hp 6215 printer with my mac book pro.  the driver installation disk doesn't work.  where can i get a driver that will work?  i use OS X

    i need to use an hp 6215 printer with my mac book pro.  the driver installation disk doesn't work.  where can i get a driver that will work?

    With the Lion it is essentially unnecessary to resort to external driver disks. What's more, most of those disks are incompatible with the OS and should not be used. The system already carries a wide variety of printer description files (aka PPDs, which is what modern printing systems use as "drivers") for a lot of brands. And there was an HP printer update just two days ago.
    Just checked in mine and did indeed find that the HP OfficeJet 6200 Series, with or without Fax, is covered with the latest update.
    So just go thru the motions of creating a proper printer instance:
    Make sure the Mac "sees" the printer on the network.
    System Preferences / Print & Scan
    Click on the + button on the left column
    Select the appropriate type of printer, will use IP for the rest of this
    Select HP Jetdirect - Socket, default for HP network printers
    Type the IP address or look it up
    Name the printer for easy identification on the print dialog
    Let the Mac identify the printer model or manually choose the driver
    Click Add.
    Once the instance pops up in the list, can click on Options & Supplies for further config.

  • Getting two same workitems in PO release workflow for 2 level

    Hi experts,
    I am working in PO Release workflow upto two level of release.
    But while triggring my workflow by creating PO I get two same workitem.One of the two has correct Release Code(I have checked that in workflow log) and another has Release Code with no value.If I execute one of them Its working fine.But 2nd one still remains in inbox.I think my workflow has been triggred twice while I am creating a PO.
      Can someone suggest, where is the problem?
    Thanks,
    Manas

    Hi,
      According to your instruction I have got 5 event trace.
    BUS2012     RELEASESTEPCREATED     14.02.2008     16:31:57     WS99900003     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    QCYBUS2012     CREATED     14.02.2008     16:31:57          @AI@     No receiver entered
    BUS2011     QUOTATIONCREATED     14.02.2008     16:31:57          @AI@     No receiver entered
    BUS2012     RELEASESTEPCREATED     14.02.2008     16:31:57     WS99900003     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    FREBUS2012     CREATED     14.02.2008     16:31:57          @AI@     No receiver entered
    I have given you the details of the event traces.
    Here I notice RELEASESTEPCREATED event occurs twice.
    Can you please suggest why this is happening?
    Thanks,
    Manas.

  • I can't get text-to-speech to work in Mountain Lion

    I am running a MacBook Pro Retina with mountain lion and I can't get text-to-speech to work. I have selected the text and pressed the key to initiate it, but it just doesn't start to talk.

    (cross-posting from another thread)
    I'm having the same problem. It's as if my iPhone and MacBook Pro now have two separate calendars.
    Basically, I have a MacBook Pro (Mountain Lion, 13", late 2011) that I sync via USB with an iPhone 4S (iOS 5.1.1). Before upgrading to Mountain Lion, all of my iCal events would sync flawlessly. But none of the events I've created in iCal (Calendars) since upgrading have synced to the iPhone. Likewise, no new events that I create on the iPhone Calendar will sync to iCal. Also, changes to an existing event (even one created before upgrading to Mountain Lion) don't get synced either.
    Everything else seems to be syncing just fine though (music, apps, contacts, etc).

  • I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same fam

    I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same family.

    Welcome to the world of digital media. Your can't really transfer it. I don't know what the rules are about transferring to your spouse but I do know that in some cases when you die, your heirs cannot inherit your digital media. This is why there is still an advantage to buying the CD since the usage rights belong to whomever holds the physical media.
    A possible workaround is to burn the songs to a music CD with yout account (tracks only without song titles) and then having your wife upload it as a regular music CD onto her account. It's been a while since i've done this so I'm not sure if it would work now.
    Please note that I'm not advocating copyright and/or TOS violations. I'm only suggesting ways to copy music for your own personal use which has traditonally been permitted. I only did this because I wanted to convert iTunes songs to mp3 files so I could burn them onto a data CD for use in my car. It would make sense that since married couples are a joint entity, this would be personal use.
    Also, I'm not a lawyer so don't take this as legal advice.

  • How can i get the same itunes library on 2 macs

    how can i get the same itunes library on two different macs, without having to pay for icloud please.

    Copy everything from one computer to the other.

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • [BO XI 4.1, JAVA] Migration from BO 3.1 to BO 4.1

    Hi all, I work on an application Java which connects to BO 3.1 and posts all the webis of the reference table, extracts the requests, the universes and the objects of a report Webi I want to migrate to the version 4.1 of BO, I have to use the jars of

  • Terminination Page Hangs and cpu spikes when hit submit

    Hi ,     Could you please help me trouble shooting on the below issues.               Req :                     Convert "Termination Reason"(message Choice to Message LOV) on TerminiationPG so that Additional Description can be show to the manager be

  • Upgrade 12.0.6 to 12.1.1

    Hi We are planning to upgrade Oracle Applications 12.0.6 to 12.1.1. Details of our environment: Operating System : Microsoft Windows Server 2003 Database Version : 10.2.0.4 Type : Two Node (Database Node and Application Node) Services running on db n

  • S_ALR_87012357 VAT

    Hello, When executing t-code S_ALR_87012357 to post the return VAT. The transaction is executed successfully but after running it I am not able to see the postings because the job is not running. Any suggestion? Thanks a lot Mansikka

  • Design Help

    So I am new to Dreamweaver, and will probably annoy everyone w/ this question because I'm sure its not a simple 2 sentence answer, so maybe I can be directed to the right tutorial video or something. The page I want is very simple visually, I just wa