Why is my hp130 not "seen" by photoshop cs5/ WIndows7

I've recently bought an HP130 Printer. I run Wndows7 and adobe cs5 photoshop. In photoshop the printer does not appear in th printer list and so I cannot print directly from the programme is this usual. It prints ok from windows. Any advice would be appreciated thanks.

Here is a link where others have had a similar issue. The comments section has several different comments from people who said they got this issue fixed.
http://forums.adobe.com/thread/374605
Hope this helps !
If I helped you at all it would be great if you clicked the blue kudos star!
If I solved your post please mark it as solved to help others.
I'm a printer tech with HP.

Similar Messages

  • Why are my plug-ins not recognized by Photoshop CS5?

    Hello,
    It seems my plug-ins are not recognized at all by Photoshop CS5:
    - Imagenomic
    - Photokit Sharpener
    - Photomatix
    and even the - Optional Plug-ins given by Adobe are not working
    I get a panel that says:
    "could not complete your request because Photoshop doesn't recognize this type of file"
    Am I doing something wrong?
    The plug-ins are in:
    Applications>Adobe Photoshop CS5>Plug-ins>Automate>PK Sharpener
    or
    Applications>Adobe Photoshop CS5>Plug-ins>Optional Plug-Ins
    or
    Applications>Adobe Photoshop CS5>Plug-ins>Imagenomic
    or
    Applications>Adobe Photoshop CS5>Plug-ins>Filters>Tone Mapping
    Thanks for your help!
    Emilie

    sorry I've found the answer... not running in 32 bits... What a shame...

  • Pen Pressure not working in Photoshop CS5.1

    Hello,
    I've looked at a lot of questions and answers concerning pen pressure in this forum, and I've tried a lot of things to fix this problem. I have a Genius MousePen 6x8 and use Photoshop CS5.1. It's been a while since I used my tablet, but it used to work before. I rebooted my computer a while ago, so I installed the new driver from the Genius website. The tablet is working fine, even the pen pressure, but for some reason it just won't work in Photoshop. I've tried to fix it by resetting the Photoshop settings by using the Ctrl+Shift+Alt, I've reset the brush tool, I've played around with the brush options and nothing has worked.
    Here is the image of the pen pressure working:
    And here is the image of the settings for the brush and the pen pressure not working:
    Thank you for your time!

    Your tablet driver isn't reporting pressure correctly.
    The knockoff tablet drivers usually need to be revised for each new version of Photoshop (and we have no idea why).
    Contact your tablet maker to see if they have updated drivers to fix their bugs.

  • Edit: Touchscreen not working with photoshop cs5

    When using photoshop cs5, I am unable to use any tool properly when using the touch screen.
    Using the touchscreen, I am able to select the tool and other buttons, but when i attempt to draw with the brush tool, dragging a stylus across the screen does not create a line, and only visual feedback is seen. Dots can be drawn, ad the only way a line can be created is to double-click and drag which does not always work and is irritating to use.
    Please help, I have tried searching for a long while and even contacted computer support but they directed me here. I am unable to find a suitable driver, as suggested on the troubleshooting page or any other solution. Any advice is greatly appreciated, thanks.
    Computer: Asus Vivobook S550CM
    System: Windows 8

    This have been touch on many times here.  There are two api use to support touch type devices like tablets and touch screens. The API that many touch screen tablet and computers use lack features Adobe Pen support uses example the API does not support things like pen tilt. Therefore Adobe does not support this API.  You need a device driver for you touch screen that user the API Adobe uses for tablet support.

  • Extension not appearing in Photoshop CS5

    Hi,
    I'm not being able to get my simple extension to show up on the window\extensions menu in photoshop CS5.
    I'm using Flash Builder 4 CS5, with the CS SDK 1.5, without Extension Builder.
    I've tried everything.
    The extension runs ok inside Flash Builder when I try to debug with AIR debugger without photoshop.
    In the main xml file, I only included a simple function, and have managed to get all the importing right (auto-complete works on the document objects)
    I have gone through everything that needed to be done to compile the extension, and it is being loaded ok in the extension manager.
    I am using a certificate I created with ADT, according to the documentation:
    java -jar ucf.jar -package -storetype PKCS12 -keystore newcert.p12 -storepass 39#wnetx3tl com.example.helloworld.zxp -C "tt" .
    (having all files from the output folder copied to a local folder named "tt")
    I did all the builer-plate manifest file definition, by the book.
    I used the Flex 3.4 SDK libraries, as described in the tutorial.
    All can be seen in the attachement.
    Here is my main xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    historyManagementEnabled="false">
    <mx:Script>
    <![CDATA[
    import com.adobe.csawlib.photoshop.Photoshop;
    import com.adobe.photoshop.*;
    public function run():void
    var app:com.adobe.photoshop.Application = Photoshop.app;
    var doc:Document = app.documents.add();
    doc.selection.selectAll();
    var color:RGBColor = new RGBColor();
    color.red = 0;
    color.green = 0;
    color.blue = 255;
    doc.selection.fill(color);
    ]]>
    </mx:Script>
    <mx:VBox height="100%" width="100%" verticalAlign="middle" horizontalAlign="center">
    <mx:Button label="Say Hello" click="run()"/>
    </mx:VBox>
    </mx:WindowedApplication>
    Here is the manifest file:
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest Version="2.0" ExtensionBundleId="com.example.helloworld" ExtensionBundleVersion="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ExtensionList>
    <Extension Id="com.example.helloworld.extension1" Version="1.0" />
    </ExtensionList>
    <ExecutionEnvironment>
    <HostList>
    <Host Name="PHSP" Version="12" />
    </HostList>
    <LocaleList>
    <Locale Code="All" />
    </LocaleList>
    <RequiredRuntimeList>
    <RequiredRuntime Name="CSXS" Version="2.0" />
    </RequiredRuntimeList>
    </ExecutionEnvironment>
    <DispatchInfoList>
    <Extension Id="com.example.helloworld.extension1">
    <DispatchInfo >
    <Resources>
    <SwfPath>HelloWorld.swf</SwfPath>
    </Resources>
    <Lifecycle>
    <AutoVisible>true</AutoVisible>
    </Lifecycle>
    <UI>
    <Type>Panel</Type>
    <Menu>Hello World</Menu>
    <Geometry>
    <Size>
    <Height>200</Height>
    <Width>200</Width>
    </Size>
    </Geometry>
    </UI>
    </DispatchInfo>
    </Extension>
    </DispatchInfoList>
    </ExtensionManifest>
    Debug mode didn't work for me for some reason:
    I added the registry debug flag (windows 7 64bit) in both the user-key:
    HKEY_CURRENT_USER\Software\Adobe\CSXSPreferences\PlayerDebugMode     REG_SZ     1
    And the local-machine key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Adobe\CSXSPreferences\PlayerDebugMode     REG_SZ     1
    I tried puting the output files both in the common files folder:
    C:\Program Files (x86)\Common Files\Adobe\CS5ServiceManager\extensions\
    And the user folder:
    C:\Users\arnon\AppData\Roaming\Adobe\CS5ServiceManager\extensions\
    Tried debugging both using the AIR debugger and the Web one...
    Nothing...
    I tried updating the AIR2.0 SDK, as described by overriding the files, both in the Flash CS subfolder, and the CS SDK subfolder, as described.
    I tried updating both flash CS and Flash Builder 4 CS5 to their latest patch.
    I'm all out of ideas...
    Please HELP!

    10x,
    You saved my ***!
    It actually has to include both the PHSP "AND" the PHXS host names for it to work - this is stupid!
    If I only use PHXS the extension manager is not able to install the extension, saying it cannot find a host that matches the manifest (even though my photoshop IS the extended variation, so in a sense it's more acurate manifest-wise), and if I only use the PHSP, it IS loaded but doesn't appear in the application!
    AND THERE IS NO DOCUMENTATION ON THIS PHENOMENON ANYWHERE!
    THIS IS BEYOND IRRESPONSIBLE!
    Thank you very much david, but please, as you are an adobe employee, get this message to the right people, if you can.
    I know the corporate agenda would probabely be the incentivise people to register to the 1500$ program to get the extension-builder, by keeping the alternative inconvenient, but this issue is beyond inconvenient, it's border-line cruelty!

  • Windows "Open with..." not working for Photoshop/CS5.5

    I use the "Open with..." command in the Windows right-click context menu all the time to open .jpg and other image files in Photoshop. I don't want to directly associate .jpgs, etc, to Photoshop because most of the time I just want to view them quickly in Windows Photo Viewer. But every once in a while, I need to open one in PS, so I had been using the "Open with..." menu command. This worked fine in every version of CS that I've ever used.
    Until, all of a sudden, when I installed CS5.5, "Open with..." no longer works. Right-clicking on a .jpg, for instance, doesn't even show Photoshop as a valid option for an application in which to open the file (not in the "Recommended Programs" list or even the "Other Programs" list). So I have to go and browse for an "Additional Program". I'm using Windows 7 64-bit, but whether I choose the photoshop.exe in Program Files or Program Files (x86), the jpg still just opens in the default application (Windows Photo Viewer).
    Same for PDFs (opening in either Photoshop or Illustrator).
    PSDs open fine, directly, when I double-click the file.
    This really seems like a CS issue, since "Open with" still works fine for other non-Adobe applications.
    How can I get my "Open with" menu to "see" Photoshop again as a valid option and pass the filename correctly so that it actually opens the file?
    Anybody have any ideas?
    Thanks much!

    Nope. I'd done that many many times, and it never "stuck". No matter how many times I browsed for the exe, whether I checked "Always use the selected program..." or not, the jpg still opened in Photo Viewer.
    Turns out, this thread showed up on the "More like this" widget in the righthand of these forums when I had submitted my post, and that answered my question. Why the thread never showed up when I was actually searching for an answer, I'll never know.
    As per that thread, you have to go in and manually set/update the registry key
    HKEY_CLASSES_ROOT\Applications\Photoshop.exe\shell\open\command
    to point to the path of the most recent Photoshop (in my case, C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\Photoshop.exe). I guess this is something that the CS5.5 installer fails to do under certain circumstances. It was still pointing to the path of my CS5, which was no longer valid.

  • My Orders does not list my Photoshop CS5 purchase

    I don't see my photoshop purchase in my orders on my adobe profile. My lightroom purchase is there, however. If I try registering the photoshop cs5 I receive a message that the product is already registered. If it's registered why will it not show on my purchased products?

    You need to contact Adobe Support either by chat or via phone for information about your account.
    Here is a link to a page with options to help make contact:
    http://www.adobe.com/support/download-install/supportinfo/

  • My 3D is not working in Photoshop CS5. All of the options are greyed out

    Hi,
    I just installed the photoshop CS5 but find out my 3D is not working, all of the options are greyed out. I have checked on the openGL menu in preference but still not work. I have core i7 and intel HD graphics 3000 with up to 1760MB dynamic video memory. please help

    Is the active document RGB?
    Could you please post a screenshot with the pertinent Panels/Menus visible?

  • Image not displaying correctly Photoshop CS5 Extended V 12.1. (Same file OK in PS Elements)

    I am having a problem with Photoshop CS5 Extended V 12.1.
    The problem:
    When I open some files, some shades of BLUE colour is displayed as BLACK
    However the same file  opens and displays correctly if I open it using Photoshop Elements V9.0.3.
    When I save the file as JPEG and re-open it, the problem returns.
    Opening the JPEG file in any other application, including PS Elements, does not cause the problem
    Source of files
    The original files came from a Nikon camera, saved in RAW format. It is possible that the original files were corrupted in some way as the shots had an unusual blue cast - which was easily resolved by Photoshop when I originally opened the RAW files. However, I'm not sure.
    The problem is not universal as I've not been able to reproduce it with any other files (RAW or JPEG).
    I have calibrated my monitor display settings sRGB IEC61966-2.1 (default)
    Other information:
    Adobe Photoshop Version: 12.1
    Operating System: Windows 7 64-bitVersion: 6.1 Service Pack 1
    System architecture: Intel CPU
    Family:6,
    Model:10,
    Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 3395 MHz
    Built-in memory: 8153 MB
    Free memory: 5089 MB
    Memory available to Photoshop: 7147 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K

    Thank you for yur reply, Curt. Yes, I do have the original RAW file. When I open it in PSE and PS, the colours appear correctly AT FIRST as shown here:
    However, when I select "Open Image", it appears as here:
    You will see that the blues in the lady's scarf and the wolly hat of a man in the forground are appearing as black. However, when the file is saved as JPEG or PNG and printed or viewed using PSE or Pait, or any other medium (even Premiere Elements), the colurs arer fine.
    However, the same process when followed in PSE, does not result in the same outcome. The image displays correctly.

  • Brush and Pencil tool not working in Photoshop CS5 trial

    I dowloaded the Photoshop CS5 trial yesterday 2 days ago. Everything worked perfectly yesterday. Unfortunately, today...the brush and pencil tool doesn't work. Anyone have any idea why?

    We need a few more details like what doesn't work
    with the brush or pencil tools.
    Provide a screenshot if you feel that would help illustrate the problem.
    MTSTUNER

  • Why does Bridge CC try to open Photoshop CS5

    Double clicking on a RAW file in Bridge CC returns an error message saying that Photoshop CS5 could not be found. 
    I had both CS6 and CC installed. Double clicking on a RAW file in Bridge CS6 opened Photoshop CS6 (expected). Double clicking on a RAW file in Bridge CC opened Photoshop CC (expected).
    I uninstalled everything related to CS6.
    Now, double clicking on a RAW file in Bridge CC tries to opened Photoshop CS5!
    How do I fix this?  How do I get Bridge CC to open raw files in Photoshop CC?
    Thanks.

    Official answer from Adobe Support: manually map all file types to the desired version of Photoshop. The process is:
    1. Go to: Bridge CC   Edit | Preferences | File Type Associations
    2. Find file type mapped to "photoshop"
    3. Right click on the "photoshop" text | Browse
    4. Browse to the desired version of Photoshop | select it | Open
    Repeat steps 2-4 for all instances of file types mapped to "photoshop." Hint: you can just double click on the desired version of Photoshop in step 4.

  • The feature "Save as" is not working in Photoshop CS5

    Hello, I've downloaded Photoshop CS5 in trial mode but the "feature" "Save as" and "Save" are not working, I can't save my work, is it a restriccion for being in the trial mode?. I'm using Windows XP sp2 with 1.5 Gb RAM, 100 Gb HD and 2.6 Ghz Intell processor. Before the Photoshop CS5 I had installed the CS4 Suite and was working perfectly well. Could you help me with this?.
    Thanks
    Efraín Escamilla Guido
    México City
    [email protected]

    The trial version is the same as the full version except
    for the 30 day limitation.
    I think on windows xp you need sp3 for cs5 to work as expected.
    Anyway that's what is says here:
    http://www.adobe.com/products/photoshop/photoshopextended/systemreqs/
    That may not be the problem, but it's a good place to start.
    Also it's not a good idea to post your email on the forums.
    MTSTUNER

  • CS Extension, Script UI and events not firing in Photoshop CS5

    Hi!
    I'm a bit confused with two technologies dealing with SWF panels. There was a technique in the previous versions of Photoshop when SWF content has been loaded into a ScriptUI Window. Is it changed? Or does it still work together with CS Extension extensions?
    I have a script that creates ScriptUI Window and then loads an SWF into it. It has a custom 'mousemove' event listener that helped to move this window around the screen. Now - in the new Photoshop CS5 (I tried 12.0.1 as well) - it seems like the 'mousemove' event is not fired for ScriptUI windows containing SWFs.
    I'm not sure, maybe it has something to do with the new SWF treament in CS5?
    If I'm wrong, then I'm sorry, if this question doesn't fall into this forum's area of expertise.
    Thank you!

    10x,
    You saved my ***!
    It actually has to include both the PHSP "AND" the PHXS host names for it to work - this is stupid!
    If I only use PHXS the extension manager is not able to install the extension, saying it cannot find a host that matches the manifest (even though my photoshop IS the extended variation, so in a sense it's more acurate manifest-wise), and if I only use the PHSP, it IS loaded but doesn't appear in the application!
    AND THERE IS NO DOCUMENTATION ON THIS PHENOMENON ANYWHERE!
    THIS IS BEYOND IRRESPONSIBLE!
    Thank you very much david, but please, as you are an adobe employee, get this message to the right people, if you can.
    I know the corporate agenda would probabely be the incentivise people to register to the 1500$ program to get the extension-builder, by keeping the alternative inconvenient, but this issue is beyond inconvenient, it's border-line cruelty!

  • Lightroom edited photo will not open in Photoshop CS5

    Can someone help please.
    Just upgraded my mac to Yosemite and since then, having problems with using edit in Photoshop function from Lightroom. Have Lightroom Version 4.4 and Photoshop CS5
    Any ideas?

    Try re-installing the, both. You migth run the Adobe CC Cleaner tool while they are uninstalled: https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Benjamin

  • Why do downloaded fonts not work in photoshop elements 10 but work fine in other applications?

    Having trouble with downloaded fonts in adobe photoshop elements 10.  Can anyone suggest how to fix this problem?  The font does not show detail (all filled in black) in elements but is perfectly fine in other applications on my mac. 

    PSE simply uses the system fonts. Have you installed the font in the default location?
    Are you using a small font size on a large resolution image?

Maybe you are looking for