Canon MF4270 Scanning Function only works once

After my upgrading to 8.1 my canon MF4270 scanning function will only work one time when it is installed. Any subsequent boot (cold or warm) and it fails to work.  The software (canon toolbox or windows scan) will just hang indefinitely.  Sometimes
I get an error msg, sometimes I do not.
1. Have the latest driver from the Canon website
2.  Tried reinstalling the driver several times
3.  Tried the Windows scan utility
4.  Tried different USB ports.
5.  When I do get an error msg it is usually a "USB device is not recognized"
6.  In Device Manager>Universal Serial Bus controllers>Unknown USB Device (Device Descriptor Request Failed
7.  When I call up the properties for the yellow triangled usb device, event tab in the scrollable window:
Device USB\VID_0000&PID_0002\5&e658374&0&9 was configured.
Driver Name: usb.inf
Class Guid: {36FC9E60-C465-11CF-8056-444553540000}
Driver Date: 06/21/2006
Driver Version: 6.3.9600.16442
Driver Provider: Microsoft
Driver Section: BADDEVICE.Dev.NT
Driver Rank: 0xFF0000
Matching Device Id: USB\DEVICE_DESCRIPTOR_FAILURE
Outranked Drivers: usb.inf:USB\DEVICE_DESCRIPTOR_FAILURE:00FF2000
Device Updated: false
8.  Also received a "
Windows has stopped this device because it has reported problems. (Code 43)
A request for the USB device descriptor failed."
9.  Canon tech support stated it was an MS WIA service issue and not there problem.
10.  Also tried compatibility routine.
We run a paperless office so this is pretty huge.  Need your expertise. 
Thank You!
* * * UPDATE:  The above discussion was with the MFC4270 fully powered or in energy savings mode and PC fully powered.  Any reboot of the PC would result in no scanner.  Tried turning off the MFC, reboot the PC, then turn on the scanner,  and
the scanner worked just fine.  A subsequent reboot with MFC remaining on would fail the scanner.  Any reboot with MFC off, then turned on after booting would work.
So something amiss with driver and/or USB.

Hi,
Code 43 means that a device driver notified the operating system that the device failed, this circumstance can occur if the device hardware fails or if the device driver fails.
To resolve this problem, take the following steps:
1. To open Device Manager, click Start, click Search programs and files, and then type Device Manager. A list of available matching items appears above the search box; click Device Manager.
2. Locate the malfunctioning device in the list of devices, right-click the device, and then click Uninstall. When a warning message appears that you are uninstalling a device from your system, click OK. Device manager uninstalls the device.
3. Right-click your computer name in Device Manager and click Scan for hardware changes. Device manager scans your system and automatically reinstalls your device.
4. Right-click the device and click Properties. On the General tab of the device Properties dialog box, in Device status, you should see the message This device is working properly.
For more troubleshooting steps you can find it here:
http://technet.microsoft.com/en-us/library/cc725873(v=ws.10).aspx
Regards
Wade Liu
TechNet Community Support

Similar Messages

  • MF4270 Scanning Function not working on subsequent boots, MF left on.

    After my building a new PC with Windows 8.1,  my Canon MF4270 (which worked fine with Win 7 Ultimate) scanning function will only work:
    1.When the driver is first installed. Any subsequent boot (cold or warm) and it fails to work if the MF is left on.  The software (canon toolbox or windows scan) will just hang indefinitely.
    2.If the MF is powered down on PC boot and powered up after booting, the scanner WILL work. (Turning it off is not an option, other networked users need it on, nor is leaving the PC on)
    3.Have the latest driver from the Canon website
    4. Completely removed and reinstalled the driver several times
    5. Tried the Windows scan utility
    6. Tried different USB ports.
    7. When I do get an error msg it is usually a "Cannot communicate with scanner"
    8. In Device Manager>Universal Serial Bus controllers>Unknown USB Device (Device Descriptor Request Failed
    9. When I call up the properties for the yellow triangled usb device in Device Manager, event tab in the scrollable window:
    Device USB\VID_0000&PID_0002\5&e658374&0&9 was configured.
    Driver Name: usb.inf
    Class Guid: {36FC9E60-C465-11CF-8056-444553540000}
    Driver Date: 06/21/2006
    Driver Version: 6.3.9600.16442
    Driver Provider: Microsoft
    Driver Section: BADDEVICE.Dev.NT
    Driver Rank: 0xFF0000
    Matching Device Id: USB\DEVICE_DESCRIPTOR_FAILURE
    Outranked Drivers: usb.inf:USB\DEVICE_DESCRIPTOR_FAILURE:00FF2000
    Device Updated: false
    10.  Also received a "
    Windows has stopped this device because it has reported problems. (Code 43)
    A request for the USB device descriptor failed."
    12.  Also tried compatibility routine.
    13.  Microsoft site states MF is compatible with 8.1
    We run a paperless office so this is pretty huge.  Need your expertise.
    Thank You!
    Computer Info:
    OS Drive:  SAMSUNG MZ-7PD256BW R
    Memory:  8Gx2 GSKILL F3-1600C9D-16GXM R
    OS:  WIN 8.1 PRO 64 BIT
    Motherboard: GIGABYTE GA-Z97X-UD7 TH ATX R
    CPU: INTEL CORE I7 4771 3.5G 8M R

    Thank you for your reply woxofcavu.
    Please follow the steps below and verify if you receive the same error:
    1. Open the Windows desktop.
    2. Right click on the MF Toolbox icon and click properties.
    3. Click the Compatibility tab, then click "Change settings for all users".
    4. Put a check next to "Run this program as an administrator", then click Apply and OK.
    5. Click OK again on the properties screen.
    The MF Toolbox should operate normally for scanning.
    If the error persists, I recommend that you contact us at 1-800-OK-CANON (1-800-652-2666). 
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Not grasping why the strcpy_s function only works once in this code

    I don't understand why the below strcpy_s  (BOLD, ITALASIZED) function shown below does not work. The one just above it does. I tried reading the HELP info, but just not grasping it. Can someone help in plain, simple english?? Thanks!
    #include <iostream>
    #include <cstring>
    using namespace std;
    class employee
        char name[80];                //private by default
        double wage;
    public:
        void putname(char *n);    //these are public
        void getname(char *n);
        void putwage(double w); 
        double getwage();
    void employee::putname(char *n)
        strcpy_s(name, n);
    void employee::getname(char *n)
        strcpy_s(n, name);
    double employee::getwage()
        return wage;
    int main()
        employee ted;
        char name[80];
        ted.putname("Ted Jones");
        ted.putwage(75000);
        ted.getname(name);
        cout << name << "makes $";
        cout << ted.getwage() << " per year.";
        return 0;

    Bohica -- it is helpful to explain what "Doesn't work" means.  In this case I assume you are referring to the fact that the line produces a compile error.
    error C2660: 'strcpy_s' : function does not take 2 arguments
    The basic strcpy_s function is defined as
    errno_t strcpy_s (char *strDestination, size_t numberOfElements, const char *strSource);
    Where the middle parameter is the size of the buffer that you are copying to.  The middle parameter is important to ensure that you don't overwrite the end of your array (a very common bug when using C-style strings and one of the most common security
    vulnerabilities out there).
    Now, when using C++, there is a special super fancy templated version of strcpy_s that is willing to take two parameters, but ONLY if the function can figure out the size of the destination buffer at compile time.  (The exact way it does this
    will probably give you a headache based on the fact that you appear to be learning C++).
    What this means, is that in employee::putname, you are copying the data to the class member name which the compiler can see has room to store 80 chars.  Because the compiler can see this, it can call the two parameter version of strcpy_s.  
    However in employee::getname you are copying to the parameter n which is a pointer to storage for an unknown number of char's.  Because the compiler cannot figure out the amount of storage you have in
    n, it cannot use the two parameter version of strcpy_s.
    Here is what you probably want to do:
    void employee::getname(char *n, size_t sizeOfBuffer)
    strcpy_s(n, sizeOfBuffer, name);

  • Pinch zoom-in/out only works once in Safai

    Outside of Safari, the pinch gesture works normally. In Preview it will zoom in or out as deep as I need. But when I try and use the gesture in Safari, it will only work once until I 'CMD' + '0' or click "Actual Size" in the View tab. It doesn't zoom on a gradient either. Pinch-open is the equivalent of 'CMD' + '+' and pinch-close is the the equivalent of 'CMD' + '-'. After I make the gesture once, I can pinch all I want and nothing happens. I need to revert the page to its original size for the gesture to work again (still only once).
    I have an i7 Macbook Pro running 10.6.8. Can anybody help me out?

    Sorry, I didnt do a good enough job explaining my issue/bug above. I can't attach a screen shot becuase of where I work and what this content is so I will do the best I can explaining it in text.
    I have a row of buttons created in InDesign that have no effects, no rollovers and lets just call them Apple In, Apple Out, Orange In, Orange Out, Banana In, Banana Out, etc.
    The Apple In button invokes an animation called Apple Fade In. Apple Out simply fades out the content animation. All of the other buttons function the same way. In my exported .swf I can click Apple In and I get my content as expected, I click Apple Out and away it goes. All other buttons work the same way, as expected. If I go through all my fruit and now I want to go back and display the Apples again. I click Apple In and NOTHING happens! If I click Apple Out the fade out animation works just fine, as many times as I want to click it, I get a flash of the content and it fades right out. The "In" buttons no longer work for any of the fruit after the initial "In" animation plays.
    In the Animation Panel I have the animations set to Play Once and Dont Hide. In the Layers Panel I have a layer called Apple Fade. In that Layer Group/Set I have Apple Fade Hack which consists of a native ID square no stroke and no fill grouped with my Apple content on "the stage." Also in that Layer Group/ Set is a collection of bitmap images, text, and vectors called Apple. I created the content first on a layer Apple, when I created the group with the blank square ID bumped the original content group under the parent layer and added another sub-layer called Apple Fade Hack. These two are indented and under the top level Apple Layer. I could probably get away with attaching a screen shot of the timing, layer, and animation panels if I had to.
    Thanks

  • Command Windows.open only works once

    Hi all,
    Iu2019m using javascript command window.open to open a new browser window from a html link webui and is working fine.
    The issue I have is this only works once. If you close the window that you had opened, and click again in the link it doesnu2019t work. It only works if you call another link before. It seems there is a kind of cache in somewhere.
    Do you have any idea?
    Thanks in advance.
    Fernando.-

    Fernando,
      Change ur mywindow name every time.Kindly go through following code. 
    CALL FUNCTION 'GENERAL_GET_RANDOM_STRING'
      EXPORTING
      number_chars        = 3
      IMPORTING
      RANDOM_STRING       = mywindow
    var lr_window;
    lr_window = window.open("<%= lv_id%>","<%= mywindow%>","resizable=1,width=1100,height=674,fullscreen=yes");
    if (window.focus)
    {lr_window.focus()}
    lr_window.moveTo(0, 0);
    <%
      clear lv_id.
    %>
    <%-- delete lv_window; --%>
    <%-- mywindow.close(); --%>
    <%
      endif.

  • Event only works once

    Hi all!
       I'm trying to do a movieclip that has 2 buttons that change the content of a flvplayer.
       The problem is that the buttons only work once, after that the event listener isn't triggered (I think) I have no removeEventListener in my code for those events so I'm totally lost as to why is this happening.
       My code is this:
    stop();
    var correr:Boolean = true;
    Globals.vars.videoP = CM_player;
    SnowManInst.addEventListener(MouseEvent.MOUSE_DOWN, mudarVideo_SM);
    bananaKingInst.addEventListener(MouseEvent.MOUSE_DOWN, mudarVideo_BK);
    addEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
    function pararFilme(e1:MouseEvent){
        trace("pararFilme "+Globals.vars.videoP);
        Globals.vars.videoP.stop();
        correr = false;
        removeEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
        addEventListener(MouseEvent.MOUSE_DOWN, correrFilme);
    function correrFilme(e1:MouseEvent){
        trace("correrFilme");
        Globals.vars.videoP.play();
        correr = true;
        removeEventListener(MouseEvent.MOUSE_DOWN, correrFilme);
        addEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
    function mudarVideo_BK(e1:MouseEvent){
        trace("mudar video BK");
        Globals.vars.videoP.stop();   
        gotoAndStop(2);
    function mudarVideo_SM(e1:MouseEvent){
        trace("mudarVideo_SM");
        Globals.vars.videoP.stop();   
        gotoAndStop(3);
    Any help would be greatly appreciated.

    it's not clear what you're trying to accomplish with that code but there are a few reasons that might fail.
    to starty, you should understand that first a button event is dispatched, then a main timeline event is dispatched (and the main timeline listener toggles between two listener functions) and finally you go to a different frame and any code in the other frame is executed.
    so, that's a pretty screwy setup.  you should remove the main timeline listeners and their functions and it's not clear you need to direct the main timeline to another frame.

  • JCOM only works once

    I have a web application that was originally developed using J-Integra
    1.5.3 -- it works great in tomcat 4.1, and the classes themselves can
    also be tested/exercised outside of tomcat, where they work perfectly
    as well.
    Now that the application is mostly finished with development, we want
    to deploy this to our BEA Weblogic 8.1 servers. The problem
    is that, after turning on JCOM, and removing the external jintegra
    jars (using only the weblogic versions now), I can get the app to
    work properly exactly once after startup. That is, I can start
    Weblogic, load the JSP page I use as a tester in my browser, and it
    works as it should. If I hit the refresh button, I get a
    RuntimeException like this:
    java.lang.RuntimeException:
         at com.linar.jintegra.StdObjRef.invoke(StdObjRef.java:55)
         at com.linar.jintegra.Dispatch.vtblInvoke(Dispatch.java:763)
         at jsp_servlet.__index._jspService(__index.java:181)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1053)
         at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :387)
         at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :305)
         at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:6291)
         at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:317)
         at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
         at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3575)
         at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2573)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    I also see this in my weblogic logs:
    <Jul 8, 2003 2:14:05 PM EDT> <Error> <COM> <BEA-210000> <100680] *: >
    and thats all the information I get.. I have tried to crank up the
    jintegra logging as high as I can (using both "
    com.linar.jintegra.Log.logImmediately(3, "c:\\temp\\jintegra.log");
    " in the constructor, and by supplying
    "-DJINTEGRA_LOG_FILE="c:\temp\jintegra2.log" -DJINTEGRA_LOG_LEVEL=3"
    on the startup line for weblogic, but gotten only as far as
    c:\temp\jintegra.log being created.. no contents in it, and
    jintegra2.log (the one created from the command line) isnt created at all.
    so, I am at a loss... it does work once, and I absolutely no
    information as to why it fails after that first time. Any ideas would
    be appreciated. thanks.

    not sure exactly why it would only work once, but I
    personally dont like using a listener for simple button actions.
    If it were me, i would just use standard button actions and
    make the caption fade in and out with an alpha tween.

  • HTTP GET only works once

    Web UI Builder:
    I have a device that responds to HTTP GET messages.
    I made a simple vi that uses the HTTP GET String function connected to a string constant and WireShark to monitor Ethernet traffic.
    When the vi is first run an HTTP message is sent and replied to.
    If the vi is run again the message is not transmitted.
    If the HTTP GET message is changed the new message will be transmitted. But not twice.
    If LabVIEW Web UI Builder is closed and restarted the message will again be sent just once when run.
    Why is the message only being sent once? It's like all outgoing messages are being tracked and only sent once.

    I think this is standard (but not always desirable) behavior of the networking stack that Web UI Builder uses. (On Windows, it's basically the built in/  Internet Explorer networking stack). After the first GET request with the same URL, if the server doesn't send no-cache headers, a cached result will be returned.
    If you control the server that you're connecting to (and can add HTTP headers), try adding a no-cache header to the GET response. ("Cache-Control: no-cache" is the first one I'd try).
    If you don't control the server you're connecting to / that doesn't work, another workaround is to append a query string parameter with a random number or timestamp. With this approach, the GET URL is always changing, so the caching behavior is disabled and the request should always go to the server.
    (Something like this appended to the end of the URL:
    or, "&n=[timeInTicks]" if you're already using other query parameters)

  • CallResponder CREATE only work once

    Hi all!
    Im using Flash Builder 4 to create a new project. Im really happy with the new connection methods, but Im getting an issue really strange. When i create a new service call that include data in my base, it only works on the first time! When i try to include another value, it simply dont work. I dont receive any error message, alert.... nothing. Is there anybody that had this problem? any idea to fix it?
    Explaining the issue in example: I create a Employee service. I generated the employee form, and associated it with the CreateEmployee service. I fill the form with the employee data, and submit. It include the data on my database correctly, but when i try to input another data, the button just dont work. I have to refresh the page to it work again. I tryed to find some answer on the web, but until now i didnt find it. I know that FB4 has been released very recently, so we dont have already a huge knolegment on it.
    Thanks,
    Williams

    Hi,
    I haven't worked a lot with the data wizards but one thing I notice is when you set a form to create a record it will produce a very standard template that uses a valueobject of 'name'. Now on the assumption that you have a new record you wish to enter, the first step is not to try and edit any automatically generated primary keys
    i.e. a mysql table
      ID = int (autoincrement) primary key
      Surname = varchar(25)
      Name = varchar(25)
      DOB = date; 
    the form template would offer all these fields for updating/creating) - so delete the ID option as you don't want to touch that
    Next with the value object once its populated it would possibly update the existing record rather than create a new one so when you enter your create option reseting the value object would be a good idea -  names = new Names(); this gives you a clear object for the create record process.
    Last thing, if you are displaying the records in a grid you would refetch the records in an eventlistener for the createrecord function.
    If you would like a test case for this let me know and i'll put something together.
    David

  • Spry Tab link only works once... why?

    Hi all,
    I have a spry tabbed area with 4 tabs on my page. Each tab contains data that is dragged from an MSAccess table. A couple of the tabs have repeat regions. This all works fine.  One of my tabs has a repeat region where I can click on a button image to change a record status from True to False (or visa versa). The click runs the associated vbscript which executes the SQL update statement no problem. However I noticed that when I changed the data on this tab and reloaded the page using a Response.redirect after the sql update was executed, it would default to the 1st tab and not the one I was viewing that contains the repeat region. A quick search led me to the SpryURLUtils.js file which solved that problem by allowing me to specify which tab to load. I appended the relevant code to give me this:
    Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1"
    As I mentioned, the tab contains a repeat region. If I click on a button to change the status of that record the page reloads fine and displays the correct tab. But this only happens once... each subsequent time I try to change another record my tab contents disappear. The tabs are still visible and if I click on the tab where I've changed the data the tab content is dispalayed, but obvioulsy this isn't right... it should reload and display the correct tab with each call of the code.If I navigate away from this page and then come back to it I can successfully chnage one record and the results are displayed. Change another record and the changes are made, but the tab contents are not displayed again. The interesting thing is that if I reload/refresh the page the problem occurs staright away on the first record change.
    So my question is 2-fold... Why is this happening and how do I solve the problem?
    Here is the vbscript that updates the record and  does the Response.redirect
    <%
    'Change Notification
    If (CStr(Request("ToggleNotify")) = "ToggleNotify") Then
    dim strSQL
    'check to see if notification is currently true or false
        If cstr(Request.Form("NotifyChanges")) = Cstr("True") Then
        'change notifiaction to false
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=0 WHERE AccessID = " & Request.Form("hiddenAccessID")
        else
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=-1 WHERE AccessID = " & Request.Form("hiddenAccessID")
        end if
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_VBUsers_STRING
        MM_editCmd.CommandText = strSQL
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
        Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1" )
    End If
    %>
    Here is my Repeat region with the associated form
    <%
    While ((Repeat3__numRows <> 0) AND (NOT rsAccessRights.EOF))
    %>
    <form name="frmNotifications" method="post" action="">
      <tr class="PageText">
        <td width="200"><%=(rsAccessRights.Fields.Item("SectionTitle").Value)%>
            <input type="hidden" name="hiddenAccessID" id="hiddenField2" value="<%=(rsAccessRights.Fields.Item("AccessID").Value)%>">
        </td>
        <td width="200">
                    <%If (CStr((rsAccessRights.Fields.Item("NotifyChanges").Value)) = CStr("True")) Then %>
              <input type="image" src="../sitegraphics/accept.png" alt="Submit button">
            <%else%>
              <input type="image" src="../sitegraphics/cross.png" alt="Submit button">
            <%end if%>
        <input type="hidden" name="ToggleNotify" value="ToggleNotify">
        <input type="hidden" name="NotifyChanges" id="test" value="<%=cstr((rsAccessRights.Fields.Item("NotifyChanges").Value))%>">
       </td>
    </tr>
    </form>
      <%
      Repeat3__index=Repeat3__index+1
      Repeat3__numRows=Repeat3__numRows-1
      rsAccessRights.MoveNext()
    Wend
    %>
    And here is the bit at the bottom that specifies the default tab if nothing is passed in the URL
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    Sorry for the long post!
    This is my first dabble with Spry stuff, so I'm a bit green. If anyone can explain to me why this is happening that would be most apopreciated. If anyone can tell me how to solve the problem I'll send them a big e-kiss!
    Not sure how impotant this is but it happens in both Firefox and IE8.
    Thanks in advance
    Dan

    Hi Ben, thanks for taking the time to read my query.
    The site in question is an intranet site, so I am unable to give you a link to the page. Would the entire page of code rather than just the odd bits help?
    Cheers
    Dan

  • Quick Find only works once in a Firefox session

    Suddenly, "Quick Find" only works the first time I type in a Firefox session. From the second time onward, the Quick Find bar no more appears. I tried clicking on the "/" key, but no good.
    I have tried un-check and then check again the "Seacrh for text when I start typing" option. But no good, either.
    How can I get it fixed?

    Have you seen
    * [[searching within a page#w_quick-find]]_quick-find
    Try using the single colon ' instead of the slash /
    I also note you may still be on Firefox 9, so it may be worth updating to the current firefox 11. <br/>There is also an old article
    * [[quick find bar opens when typing in text fields]]
    Try Firefox in [[safe mode]]
    * no need to make changes in the first window just click on continue.
    * if problms continue then whilst in safe mode also ensure you are only using the defult theme, and disable all plugins.

  • HP 3055 scanning function stopped working with OS 10.7.

    I recently upgraded to OS 10.7 and my networked HP 3055 printer/scanner/fax ceased to be a scanner/fax.  Printing functions work fine.  I have full functionality with my old G4 PowerBook running on 10.5.8.  Is this another HP driver problem?  The HP web site suggests that the update is built into Lion.  For what it's worth, I've never been able to get the HP 3055 to scan on my wife's Dell running on Windows 7.  It was fine on XP.
    Any workarounds or suggestions here?  I can scan with the old PowerBook but I'd really like the functionality back on my iMac.

    this process, if performed exactly, solves the issue. i found it on another site and would like to acknowledge its creator but, at this point, don't know who it was.
    I installed the HP LaserJet 3055 printer/scanner inLion 10.7.1 into two stages:
    - I first installed the printer/scanner connectedwith a USB cable
    - I then installed the printer/scanner so that itworks with the Ethernet network cable.
    Note: BEFORE doing the steps below I did NOTinstall the Apple 2.7 driver for HP printers.
    I installed this driver later, as explained below.
    A)  USB CONNECTION FIRST!
    1.  Eliminate all the currently installed HPsoftware by using the uninstaller located in Applications/HP LaserJetSoftware/HP Uninstaller
    2.  Unplug the USB cable and the Ethernetcable from the 3055
    3.  Open the Print and Fax System Preferenceand  <control> click or right click on the list of printers on theleft.  Select "Reset printing system...".
    Then click OK on the warning.
    4.  Reboot the Mac OS
    5.  Run the HP All-in-One installer rom thefile LJMFP305x339xOSX10.5Update-v8.2.dmg provided in THIS directory:
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en &cc=us&prodTypeId=18...
    (a) Click through any warning messages thatappear.
    (b) It may say that some kext file was improperlyinstalled: ignore it
    (c ) When the installer prompts for the USB cableto be connected do so!
    (d) Once this install is complete click restart onthe All-in-One installer window.  The Mac OS will restart.
    6. After the Mac has restarted, start the executionof the HP Setup Assistant in root mode.
    To do so, I opened a terminal window and executedthe sudo command as follows:
    sudo /Applications/HP\ LaserJet\ Software/HP\Setup\ Assistant.app/Contents/MacOS/HP\ Setup\ Assistant
    (a) DO NOTgo past the very first promp of the HP Setup Assistant!
    (b) Now run the usual Apple Software Update Check:
    it will find the missing HP printer driver andinstall it!
    (if not, you can instal it directly from here: http://support.apple.com/kb/dl907 )
    (c ) NOW continue with the HP Setup Assistant.
                      It will show the 3055 printer that it finds in the smallwindow.
          Click on this printer and thenfollow the instructions to
                     complete the execution of the setup assistant.
                     I had several error messages in the terminal window where Iexecuted
                    the sudo instruction above. I ignored all of them, and waitedtill the
        HP Setup Assistant declared itfinished the installation.
    7. Now the HP 3055 should be functional for Scanand Print.
    Try scanning and printing (all this with the USBcable)
    Note that as IronBadger wrote in his posts, the HPDirector may have to be restarted a couple of times
    for the printer to show up for scanning.
    To avoid this annoying "feature" I putthe "HP Scan" app directly on my dock:
    when I want to scan I just click on that app: italways work for me.
    By the way, the path of this app is :/Applications/HP\ LaserJet\ Software/Scan/HP\ Scan.app/
    =================
    B) NETWORK CONNECTION
    1. Disconnect the USB and put the Ethernet network cable, and restart the printer.
    2. Locate the printer's web page (I gave it astatic IP address in my Airport Express , namely 10.0.1.10)
         and open this web page on yourbrowser just to make sure that the printer is indeed reachable
        on the network.
    3. Run the HP setup assistant again using the sudocommand above.
    (a) On the first prompt of the the HP setupassistant, click "network".
          - If it detects the printer inthe printer's box, continue the installation as above.
           - For me, it did NOTdetect the printer on the network, so I entered the printer's IP address
              on my network,namely 10.0.1.10 . (Ithink you must click "create" to enter the printer's IP address).
              After this, Ijust followed the HP assistant instructions, till it declared that theinstallation is over.
              Important: Whenasked for a printer's name, give the printer
              a name that isdifferent from the one you gave it in the "USB" installation (in part(A) above).
    4. The printer and scanner should work now.
        (use the HP Scan app that you put inthe dock as explained in Part (A)).
    5. Optional: Remove the USB printer that waspreviously installed
    by going to the Systems Preference, then Print andScan.

  • Spry Accordion only works once and doesn't redraw after content update

    Hello,
    I am constructing an Accordion via inner.HTML.  I finally got this to work, HOWEVER, it will only execute correctly once.  When I call "doSpryData" the first time all is well.  When it gets called the second time, the "alerts" fire but the Accordion does not redraw itself and no data is displayed (function doSpryData below).
    I would appreciate any ideas on what I'm doing wrong!!!!
    Thanks and cheers!
    function doSpryData(){
              alert("in spry data!");
              var thisWhat = document.getElementById("searchByWhat").value;
        var currentid = document.getElementById("thisid").value;
              var myStr = "";
              var Acc1 = "";
              Mailings.url = "GetXML1.asp?what="+thisWhat+"&thisid="+currentid;
              Mailings.loadData();
              Mailings1.url = "GetXML2.asp?what="+thisWhat+"&thisid="+currentid;
              Mailings1.loadData();
              if ((thisWhat =="1") || (thisWhat =="2")){
              myStr += "<div id='example1Region' spry:region='Mailings1' >";
                        myStr += "<div id='Acc1' class='Accordion' tabindex='0'>";
                                  myStr += "<div id='Panel1'  class='AccordionPanel'>";
                                            myStr += "<div class='AccordionPanelTab'>{CompanyName} - Info</div>";
                                            myStr += "<div class='AccordionPanelContent'>{CO_Address1}<br>{CO_Address2}<br>{CO_City} <br>{CO_Country}</div></div>";
                        myStr += "<div  class='AccordionPanel'>";
                                  myStr += "<div class='AccordionPanelTab'>{CompanyName} - Trainees</div>";
                                  myStr += "<div class='AccordionPanelContent'>";
                                  myStr += "<table width='969' id='MyResults1' border='0' cellspacing='2' cellpadding='2' >";
                 myStr += "<tr id='thead' height='25' bgcolor='#FFFFFF' '>";
                 myStr += "<th width='20'   class='contactinfo'>Edit</th>";
                myStr += "<th width='20' class='contactinfo' align='center'>Select</th>";
                 myStr += "<th width='170' class='contactinfo' spry:sort='TraineeLastName'>Trainee</th>";
              myStr += "<th width='160' class='contactinfo' align='center'>Title</th>";
                 myStr += "<th width='160' class='contactinfo'>Phone</th>";
                 myStr += "<th width='250' class='contactinfo'>Email </th>";
                 myStr += "<th width='95' class='contactinfo'>Internal Code </th>"; 
                 myStr += "<th width='30' class='contactinfo'>Active</th></tr>";
              myStr += "<tr><td style='padding-bottom:20px;'></td></tr>";
              myStr += "<table class='scrollTable' border='1' cellspacing='2' cellpadding='2' >"
               myStr += "<tr  spry:repeat='Mailings1' spry:setrow='Mailings1' spry:hover='hover' spry:even='even' spry:odd='odd'>";
                myStr += "<td  width='23' align='center'><input name='SelectedProspect' id='SelectedProspect' type='radio' onclick = 'OpeniFrameURL('EditCandidateForm.asp?pid='+{CKeyNew}, 600,800); return false;'></td>";
                myStr += "<td  width='23' class='detail' align='center'><input type='checkbox' name='SelectedOne' id='SelectedOne' value='{CKeyNew}'/></td>";
                myStr += "<td  width='180'class='detail'>{TraineeLastName},  {TraineeFirstName}</td>";
                 myStr += "<td  width='165'class='detail'>{JobTitle}</td>";
                 myStr += "<td  width='160'align='center'  class='detail'>{TR_CellPhone} / {TraineePhoneNumber}</td>";
                myStr += "<td  width='250'class='detail'>{TraineeEmail}</td>";
                myStr += "<td  width='105' class='detail'>{InternalCode}</td>";
                myStr += "<td  width='30' class='detail'>{TraineeActive}</td>";
                myStr += "</tr>";
                myStr += "</table></table>";
                                  myStr += "</div></div>";
              myStr += "</div></div><scr"+"ipt type='text/javascript'>var Acc1 = new Spry.Widget.Accordion('Acc1');Spry.Data.initRegions('example1Region');</"+"script>";
              alert(myStr);
              var div = document.getElementById("mainContent"); 
       div.innerHTML = myStr;
       var x = div.getElementsByTagName("script");
       for(var i=0;i<x.length;i++) 
           eval(x[i].text);
    var observer = { onPostUpdate: function(notifier, data) { alert("post update!");var Acc1 = new Spry.Widget.Accordion('Acc1'); } };
    Spry.Data.Region.addObserver("example1Region", observer);
    /*Spry.Data.initRegions("example1Region");
    Spry.Data.updateAllRegions();*/

    Hello to all,
    I have spent HOURS trying to figure this out....
    I know the above code is messy, but it does correctly do the accordions via innerHTML.  I have a dropdown on my page and when the user changes the input there, I call "doSpryData" and it is supposed to 1) reload XMLDataSet and 2) redraw the Accordion (I would like to have different data displayed on the same page depending on what user selects).  For some reason, it will not redraw the accordion and show the data after it has been done once. 
    I am really desperate so any ideas would be much appreciated!
    Cheers,

  • Java script button only works once?

    I am a novice with JavaScript, but Edge Animate seems like it might be a tool that I can work with. I have created pages using symbols with simple in/out slide animations using  JavaScript.  They are triggered on the buttons with the following code:
    sym.stop(4000);
    var current = sym.getVariable("current");
    if (current != "") {
       sym.getSymbol(current).play("out");
    sym.getSymbol("testimPg").play("in");
    sym.setVariable("current", "testimPg");
    The stage action for compositionready is this;
    sym.setVariable("current", "baseAnim");
    every page works fine except my testimonial page (testimPg)
    The animations work fine for all the other buttons but on the testimonial page it only fire correctly once!?
    If you click on other pages and then go back to the testimonial button, it no longer functions properly —the symbol is no longer visible when the testimonial button is clicked!?
    Can anybody figure out why this is happening.
    here is a link to the page:
    http://whelanartdesign.com/web/WhelartDesign0714v4.html
    Any help would be grateful
    thanks

    Thanks for the reply kglad. I've deleted all the button layers in every scenes and created a button layer from frame 1 until the last frame, but I still got this output here that I don't really understand what it means.

  • Why does search engine drop down menu only works once?

    I'm quite happy with the new Safari 4 (first time user) but I'm frustrated by only being able to select once with my mouse from the 'Recent Searches' drop down window.
    Let me explain. After I launch Safari 4, I'm able to use my mouse and select one of the recent searches in the drop down menu in the normal fashion - go to an item on the menu and press the LH mouse button.
    However, after I've done this once, I can't do it again. When I select an item from the list and click my LH mouse button, the search window goes blank. The previous Google search results stay the same. If I highlight an item from the drop down menu and press the Enter key on the keyboard, it works fine. A mystery!
    The funny part is that it works fine on my other laptop.
    I've unistalled and reinstalled twice but with no success. When I do reinstall, my previous preferences/settings are still there. Where's the preference file so I can delete it? Don't know, but this might help my problem.
    Anyone else seen this problem?
    Regards
    John

    Hi mach37, can you delete the Vosteran search engine by highlighting it on the Search panel of the Options dialog and using the Remove button?
    ''If it comes back:'' I would suspect a bad add-on. Here's my suggested procedure for tracking down and cleaning those up:
    (1) Open the Windows '''Control Panel''', Uninstall a Program (on XP: Add/Remove Programs). After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help in smoking out undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    (2) Open Firefox's '''Add-ons page''' using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click '''Plugins'''. Set nonessential and unrecognized plugins to "Never Activate".
    In the left column, click '''Extensions'''. Then, if in doubt, disable (or Remove, if possible) unrecognized and unwanted extensions.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any improvement?
    (3) You can search for remaining issues with the '''scanning/cleaning tools''' listed in our support article: [[Troubleshoot Firefox issues caused by malware]]. These on-demand scanners are free and take considerable time to run. If they finish quickly and especially if they require payment, you may have a serious infection. I suggest the specialized forums listed in the article in that case.
    Success?

Maybe you are looking for

  • How do I send sms from my iphone to a WHOLE group?

    I already made groups inside the address app on my mac. I also synced the group to my phone and I can see it in the iPhone. But how do I send a message to ALL people in the group without having to go back and fourth, adding each recipient individuall

  • How do I Edit an Existing PDF Form Without Losing Form Functionality

    I'm brand new to Acrobat but familiar and proficient with Flash, PhotoShop Premiere Pro, After Effects, Dreamweaver, Fireworks etc. The company I work for sells office supplies. We sell 57 distinct items.  We have Acrobat 9.  I am designing a PDF ord

  • Access document which locks up computer unable to exit document

    Receive document on Email save to file. Open file to print. Computer locked up, Unable to edit using mouse or Keyboard Only able to remove from screen by restart computer.Did send in a requested fault report days ago but no reply.

  • Urgent help needed as is duty free purchase cannot find my library

    I purchased 16Gb Touch and downloaded on wi fi ITunes account 64 songs last night - today Apple told me to update to latest version which I did and then said there was a a problem with Ipod and to restore which I did reluctantly - I now have no music

  • Info Req on Inventory Management

    Hi Experts, I am working on BI 7.0. Our client is planning to implement the Inventory Management in SAP and they will use the BI as the reporting tool. So we need to feed the Inventory management data into BI. So I want to work on that point and need