Did mavericks break the HP scan save feature?

I have used the HP Scan software for years to scan and save PDF's and JPG's.  Since I upgraded to Maveriks OS, HP Scan saves result in total black, or bad 1960's TV scan lines.  The good news is the scan functionality in System Preferences, Printers & Scanners still scans and saves.  Still, the HP Scan software is easier to use for me.
Dave

HI Dave
Thank you for your inquiry.  HP strive to have the most current software and drivers but many factors affect this. Yes it seems with the new Maverick the HP scan does not save properly. As you stated you can scan using the Apple interface.. Please see Sunshyn2005 thread http://h30434.www3.hp.com/t5/Scanning-Faxing-and-Copying/Problems-scanning-with- HP-printer-and-Mavericks/m-p/3057597/highlight/true#M72838

Similar Messages

  • I installed Lion, but did not get the multi touch gestures feature. Also my "front row" is gone.

    I installed Lion, but did not get the multi touch gestures feature. Also my "front row" is gone.

    What model computer do you have? some early trackpads will not support all gestures.
    Front Row was dropped by Apple in Lion. I beleive it can be recovered from Snow Leopard, I haven't tried it myself.

  • Adobe Photoshop CS5 did not pass the security scan on my windows machine.

    All products are up-to-date but the photoshop did not pass the test. Does Adobe still support the CS5 products?

    No, Adobe no longer officially supports any of the CS5 products.
    However, we are not aware of any reports of any anti-virus / anti-malware software rejecting any Adobe products.
    Exactly which such software is doing that? You may have very outdated or crufty virus / malware definitions. Try to get updates for them.
              - Dov

  • Moving executable jar breaks the app's save function

    For the past week, I've been trying to deploy my desktop application as an executable jar file but I'm facing the following problem: Whenever I move the jar file from its original build location, my application becomes unable to write to its external files. I initially thought the problem was path related; however, when moved the app can still load data from these files.
    The solution is probably simple but for some reasons I've yet to find it .
    The app consists of a jar file and a folder named "files" containing text files (such as library.data) to which serialized objects are written.
    I wouldn't be surprise if the problem has to do with the xml build file, but all modification I've tried so far have failed. If it is likely that it is the problem, I'll be happy to post a copy of it upon request.
    public static void saveLibraryToFile() {
        File file = new File(System.getProperty("user.dir")+"\\files\\library.data");
        if (file != null && file.exists()) {
            library = new Library(sortedAccounts, accountCategoriesMap, accountCategoriesList);
            try {
                FileOutputStream fos = new FileOutputStream(file);
                BufferedOutputStream bos = new BufferedOutputStream(fos);
                ObjectOutputStream oos = new ObjectOutputStream(bos);
                oos.writeObject(library);
                oos.close();
            } catch (Exception e) { // catches ANY exception
                System.out.println(e);
        } else {
            System.out.println("this is not supposed to happen!");
    Any help would be greatly appreciated.
    (PS: A mostly complete set of the relevant codes I'm using, including the full Ant xml file, can be found at :
    http://stackoverflow.com/questions/22732274/java-save-method-stops-working-when-jar-is-moved)

    Apparently, all this time, my problem was being caused by trying to run the application after moving it onto the desktop. If I move the app to another directory, such as C:\randomFolder, the app works fine.
    That being solved, is their anyway to completely negate this problem and make it possible to run the app anywhere? Or is it simply impossible due to various security risks?
    Run the app anywhere? Yes
    Save files anywhere? No, of course not.
    If has nothing to do with 'security risks'. It has everything to do with security and directory/file permissions.
    You will NEVER be able to write files to a directory that you do not have write permissions on. That is just the way it has worked from the beginning.
    The typical solution is:
    1. present a file open/save dialog to let the user choose where to read/write files.
    2. for writing - check that you have write privilege on the folder before just blindly trying to write to it.

  • Did I break the request?

    Hello
    In the code below for input type=file, the js onchange grabs the file location of the selected file, however when I post it it is not in either the session or request param. (Further below is the jsp). What is odd is when I use the DOM Inspector in Mozilla the #text element for the input element file1Name shows " " for the value. However the input element labeled path does show the correct value. It even fails with the table structure eliminated, of course.
    How do I get the value of the selected file into a parameter accessible by an action or jsp?
    <html>
    <head>
    <title>
    UploadOne_S for the Servlet version
    </title>
    </head>
    <script type="text/javascript">
    function showPath(thisvalue){
              //thisvalue.form.file1Name.value=thisvalue.form.file1.value;
         var msg = thisvalue.form.file1.value;
         var t   = thisvalue.form.file1Name;
         t.value = msg;
         return true;
    </script>
    <body bgcolor="#ffffff">
    <h1>
    test
    </h1>
    <table border="0">
    <tr>
    <!--used to be uploadBean.jsp -->
    <form action="UploadReview.jsp" method="post"
         enctype="multipart/form-data">
              <td valign="top" /><strong>Please choose your document:</><br>
              <td> <input type="file" name="file1" onchange='return showPath(this)'/>
                         <input  type="text" name="file1Name" id="path"/>
                   <br>
                   <br>
              </td>
              <td><input type="submit" value="UploadFile"></td>
    </form>
    </tr>
    </table>
    </body>
    </html>
    <%@ page errorPage="UploadReview_error.jsp" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x" %>
    <jsp:useBean id="uploader" class="filesDM.helper.UploadBean" scope="session" />
    <jsp:setProperty name="uploader" property="dir"
        value="<%=application.getInitParameter(\"save-dir\")%>" />
    <jsp:setProperty name="uploader" property="req"  value="<%= request %>" />
    <jsp:setProperty name="uploader" property="path" value="<%=request.getParameter("file")%>"/>
    <%=request.getParameter("file") %>
    <html>
    <head><title>file uploads</title></head>
    <body>
    From the session the websiteID= <c:out value="${websiteID}" default="not in session"/><br />
    From the session file1= <c:out value="${file1}" default="no file1 from session"/><br />
    From the session file1Name= <c:out value="${file1Name}" default="no file1Name from session"/><br />
    From the parameters varstatus= <c:out value="${param.varStatus}" default="not a parameter"/> state= <c:out value="${param.state}"/>.<br />
    From the parameters file1= <c:out value="${param.file1}" default="no file1 from parameters"/><br />
    From the parameters file1Name= <c:out value="${param.file1Name}" default="no file1Name from parameters"/><br />
    <h2>Here is information about the uploaded files</h2>
    <jsp:getProperty name="uploader" property="uploadedFiles" />
    </body>
    </html>

    The servlet specs have no built in support for multipart requests. I don't know about struts, but normally I would recommend to check out Apache commons FileUpload, which is an API that can parse multipart requests and easily allows you to retrieve file uploads from it.
    http://jakarta.apache.org/commons/fileupload/

  • Why did Apple break the good Bluetooth/headphones options?

    New Bluetooth is very dangerous (if you're driving)!
    OS 2.x = listening to music via headphone jack over car stereo, phone call interrupts, talk on Bluetooth headset, hang up & music restarts automatically through headphone jack.
    OS 3.0 = listening to music via headphone jack over car stereo, phone call interrupts, talk on Bluetooth headset, hang up & music DOESN'T restart! Have to take eyes off road to screw around with music!
    OS 3.0 = Bluetooth headset paired. Plug in headphones, music doesn't automatically switch to headphone output
    OS 3.0 = make phone call via Bluetooth headset, hang up. Dial new number and hit SEND, phone defaults back to IPHONE instead of staying on headset (again while driving, requiring more time dealing with phone instead of driving!)
    VERY disappointed!

    So a year ago I rushed out and bought Bluetooth headphones to use with my iphone, only to findout that the protocall wasn't supported. I bought an adapter and everything worked great (well mostly the music would stop when a call would come in but start again in the background after taking the call.) I lost the adapter a month ago, but knowing this update was coming just counted the days.
    So now I have the update and am quite satisfied to be listening to music and apps through my headphones. I was dismayed to dicover the lack of forward and backward protocall, but am not suprised, I knew apple couldn't give us EVERYTHING we wanted, they have to hold on to somthing for the "next big updated!" What really ****** me off is when I get a call I can no longer answer it on my headphones! I used to be I'd press the answer call button, but now nothing happens, I have to answer it on the phone and select my headset to output through. I'm getting a palm pre.
    (I have Sony DR-BT21G headphones and would be interested to hear if anyone has been able to get their headphones to work for music and answering calls directly on their headphones.)

  • Did I break the heatsync?

    Good day, all!
    Here's what happened... One day I closed the screen on the computer and set it between my bed and the wall. The carpet blocked the air vent, and the computer never went to sleep mode. When I picked it up it was very hot. It still seems to work fine, except it gets up-to 64˚C idling and the fan is always running, even after restarting or allowing to cool completely. (Off for > 8 hours)
    The only way to get it to the normal temp (Was ~57˚C) when idling is to crank-up the fans' RPM to 6,200, which brings it to 45˚C. But I don't want to do that all the time because it'll wear out the fans and drain my battery faster.
    What do the awesome people of Apple forums think/recommend?

    Exactly which MBP model do you have? If it has both the 9400 and the 9600 GPUs, which one is in use?
    It would seem that if your computer is "idling" at 57°-64°C, it's not nearly as idle as you think it is. Something is using a fair percentage of CPU cycles to keep it in that temperature range. With no other applications running, open Activity Monitor, click the CPU tab, and make a note of what process(es), if any, is/are using double-figure CPU %. Post back here with your findings.
    Note that even when the machine has just started up and everything inside is close to room temperature, the fan(s) should be idling at about 2000 RPM. That's normal.

  • In my earlier question, I may not have been clear that when the pointer scans the icon for Firefox there is a box that comes up with "Location: "C:/ etc., V. 3. etc. instead of reflecting V. 4

    Yes, i can rename the title under the icon that is always there on the desktop (which I did) but as the mouse scans the icons a light yellowish colored box pops up near the Firefox icon that starts with "Location: C:/Program Files/Mozilla Firefox 3.1 Beta 3". This is the info that should now reflect V. 4. Is there anyway to change this? This is a strange apparition that sporadically appears and then disappears on its own without any intervention on my part.

    In which folder is Firefox installed?
    *http://kb.mozillazine.org/Installation_directory

  • How to use the find my iphone feature?

    I lost my Ipod Touch 4 at school but i did not have the find my iphone feature turned on so I couldn't track it. Is it true that you can use the find my iphone app on another person's apple device to track yours? How?

    No, you have to either have the Apple FindMuPhone/iPod feature turned on or installed a third-party app. The iPod musy also bo connected to the internet.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I recently upgraded to Mavericks and I now cannot find under the file menu the option to "Save As" in my Numbers application. Where did it go?

    I recently upgraded to Mavericks and I now cannot find under the file menu the option to "Save As" in my Numbers application. Where did it go?

    In many, many apps Apple has now created a confusing array of "save as..", "export", and "duplicate" all doing essentially the same thing - saving a new copy elsewhere possibly with format changes.  Drives me nuts.
    But its always there.
    Grant

  • After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder—not just its contents—to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window.
    This action will delete any custom Mail stationery that you have created. If you want to preserve it, ask for instructions.
    If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • I want Firefox to ask me if I want to save this password for login purposes. It did that with the first 3 sites i went to... but now it stopped asking!

    Question...
    I want Firefox to ask me if I want to save this password for login purposes. It did that with the first 3 sites i went to... but now it stopped asking!
    I've gone to several DIFFERENT websites that require a login and in ALL instances since the first 3 it saved... I don't get the popup window asking if I want to save the password.
    How do I get that feature back????
    Thanks...
    Rick

    Hi seraphim99,
    You will get that [http://dmcritchie.mvps.org/icons/fx4_quittabs.png Quit Firefox message] "Do you want to save your tabs for the next time it starts?" [Save and Quit] [Quit] [Cancel] if you follow what is currently step 31 in the link I had provided [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#tabslost Restoring tabs from a lost session] (#tabslost)
    Which indicates as follows: (boldface is user set)
    * <b>browser.showQuitWarning user set boolean true</b>
    * browser.tabs.warnOnClose default boolean true
    * browser.warnOnQuit default boolean true
    * <b>browser.warnOnRestart user set boolean true</b>
    Links were included there for assistance with '''about:config''' for those that don't know how to change configuration variables, along with additional reference for that and so that other similar questions of making Firefox 4 look/act like Firefox 3.6.17 would also be answered particularly the items in the first 10 steps in the same area. Which was addressed by the following part of my original reply
    You can make Firefox 4.0.1 look like Firefox 3.6.17, see numbered items 1-10 in the following topic ["http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)].
    I don't know if you looked at the web page or not, but I've highlighted some additional words there to try to make the webpage more clear to others in the future.
    Hope that Helps

  • I have just over 100gig of music in my iTunes library plus what ever else I add in the future. Because of the amount I had to save my music library on an external drive as my laptop did not have the memory to hold it all. I want to back up my iTunes libra

    I have just over 100gig of music in my iTunes library plus what ever else I add in the future. Because of the amount I had to save my music library on an external drive as my laptop did not have the memory to hold it all. I want to back up my iTunes library and save it on a different external drive, one I store all my back ups on. Is this possible? If so how can I do it? 

    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    Delete the "songs" that do not play in your iTunes library and reimport them.

  • HT5824 I've been using numbers for iPad and I accidentally deleted a column. And the auto-save feature saved that and now I can't undo it. Does iCloud storage have backups of saved files from like 10 minutes ago? I have number

    I've been using numbers for iPad and I accidentally deleted a column. And the auto-save feature saved that and now I can't undo it. Does iCloud storage have backups of saved files from like 10 minutes ago? I have numbers synced to iCloud.
    I tried to undo it but the app crashed.
    I am hoping there's like a previously saved version of my file in iCloud somewhere. 

    No, iOS does not do short term incremental back ups to iCloud such as you get with Time Capsule.It backs up when you do soo manually, or if set properly, when the device is plugged in and connected to WiFi. It will not have saved your changes as of 10 minutes prior.

  • My AppleTv keeps dimming as if it is in energy saver mode.  My DVD player and TV do not do this.  How do I disable the energy saver feature on AppleTv?  BTW this is my second AppleTV device so it does not appear to be a product defect.

    My AppleTV keeps dimming as if it is in energy saving mode.  My TV and DVD/Netflix player do not do this.  How do I disable the energy saver feature in AppleTV?  BTW:  This is my second AppleTV device so it does not appear to be a product defect.

    I keep seeing versions of this same question, and it's always the same answer: it's the TV. Well, it happens to me as well. But it only happens when viewing programming via Apple TV. My cable is totally fine: no dimming. Only with Apple TV. So what's the answer?

Maybe you are looking for

  • Why im getting too long time in getting response from server in RMI???

    I'm using RMI architecture. On my server side I put this method getRubricHierarchy() which returns the ArrayList of Test class objects. everything is working properly fine. Im getting response properly, problem is its taking very long time in getting

  • Gerneric Datasources and Outbound Queue

    Dear Experts, I've got some generic Datasources (Delta and Full Update) that work properly with productive BW-System. Now I'm starting to build up an developement system (wrong order I know) and want to load data using the mentioned Datasources from

  • Xpath help please!!!

    This is the source XML file. The portion of interest only has been shown below. Now,i am trying to parse the DOM document that i could successfully generate out of this file, using XPath. I am only interested in the attributes and their values. Using

  • EEM/SSH onto another device: Can I avoid password in cleartext?

    Hi All I would like to create an EEM script on Switch A which ssh's onto Switch B to run a second EEM script. After looking on the Cisco site and forums, I believe the following would allow me to do this: Switch A event manager applet Script1 action

  • How to use short[] someDescriptorTags

    I have a problem concerning implementation of SI, and I need your help desperately. lots of method in interface from SI have a parameter used to filter descriptor tag. Taking the SIDatabase class for example, the class has a method: retrieveSINetwork