PROBLEM WITH PHOTOSHOP E QUARK XPRESS

After installed Leoaprd i have grat problem with Photoshop CS.
I f i try to open the file "SFOGLIA" (i don't know in english) the file that permit to see all the photo he automatically close the program.
X-PRESS version 6.1 don't answer. I try to installa again the original program but they don't eprmit me to reinstall the orginal program.
Someone can help me?

Hi,
None of the Windows versions currently support Outlook 64bit. I think it is mainly due the problems associated with 32bit applications (like PSE) talking to 64bit applications. Maybe things may change if PSE ever gets a 64bit version for Windows.
I have Outlook 32bit and that works with PSE 8.
Microsoft actually recommends installing the 32bit version of Office to avoid incomparability problems with other applications so I don't think that PSE is unique.
Brian

Similar Messages

  • Problem with Photoshop CS4 after migration to new Mac

    I just migrated from an old Mac to a new Macbook Pro running Mavericks. I'm having a problem with Photoshop CS4. Specifically, two things:
    1) When I open an image in Camera Raw, I get this error:
    Fatal error - missing component
    /Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework
    2) When I try to save anything, it tells me it can't because of a program error.
    I've looked around for a solution. Apparently I had to install Java, but that hasn't solved the issue. A couple of people mentioned that reinstalling would work for a similar problem. My problem with that is that my disk is on the other side of the world and my new macbook doesn't have a disk drive anyway. So I logged into my Adobe account hoping to see a download link for software I have licences for, but there isn't one.
    So my question is firstly, whether there is a simpler solution to the errors I am getting and, if not, if there's a solution to reinstalling Photoshop CS4 without the disk.
    Thanks!

    Did you use Apple's migration tool?  It misses a lot of support files, especially in the Application Support directories.
    You'll have to copy those files manually, or reinstall the app.

  • Problem with Photoshop CS6. If I open a file using Camera RAW

    I have a new problem with Photoshop CS6.  If I open a file using Camera RAW, and process it as usual, CS6 doesn't want to save it the way it used to.  I don't know if I changed something by accident or not. 
    Here's what happens now: After opening from ACR to CS6 and completinhg all of my work, I choose "Save as..."  The save as window opens showing the file name and format.  The default format seems to be .PSD.  I use the drop down to select .jpg.  The file saves normally as a .jpg.  When I go to close the image from, I get a new prompt asking, "Save changes to Adobe Photoshop document DSC_xxxx.NEF before closing?
    I looked up at the file name in the bar above the work space and noticed that it does NOT change from "DSC_xxxx.NEF" to "DSC_xxxx.jpg" after I have saved the file as a .jpg,in my webesite  but it always used to do that.  This adds a few extra steps when closing a document and it really slows me down.
    In fact, I wouldn't swear to this, but I think it used to save to .jpg by default, without me specifying this.
    I don't see a setting in the preferences for what to use as the default file format for saving, so I don't know where to change it back.
    Any ideas?
    Thanks in advance

    You are in the wrong forum;  You actually need Photoshop forum at this link:
    <http://forums.adobe.com/community/photoshop?view=discussions>
    Hope you can repost your question at the correct link.

  • Problems with Photoshop CS2 I originally purchased this software several years ago. At time I was running Microsoft Windows XP. This computer recently was replaced with  a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few

    Problems with Photoshop CS2
    I originally purchased this software several years ago. At time I was running Microsoft Windows XP.
    This computer recently was replaced with a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few exceptions as follows;
    when the software comes up initially I get a message that says “could not complete your request because of program error”. Hitting OK allows me to continue using the software .
    When I try to activate a function using CTLR or ALT keys I get this message “required application failed to load and the product cannot continue. Please reinstall the application”. This causes the application to abort.
    Reloading my CS2 continues to generate the same messages when I depress the CTLR or ALT keys.

    Your original copy is obsolete and Adobe is offering a free replacement you are entitled to. Download and use that and that should clear it up for you.
    https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Download this copy of CS2 and use the serial number provided next to the download link.

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Problem with photoshop on my mac

    Hey...
    I have some problem with photoshop on my mac...
    When i open the photoshop my screen change his color...
    The screen changes such delicate blue color.
    and when i close the app the color has back to the original color.
    photoshop cs 6 (master collection)
    macbook pro 15"
    OS X Mountain Lion
    2.3 i7
    4 giga ram
    Have a nice day

    Not sure which screen you mean, but maybe your seeing the Application Frame in photoshop cs6.
    You can turn that off in photoshop cs6 under Window>Application Frame.
    If that's not it, could you post a screenshot?

  • Problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a

    problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a few days after install.

    problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a few days after install.

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Problem with Photoshop Elements Printing

    I have been using Photoshop Elements for a couple of years now and know it pretty well.  Today while attempting to print, a strange problem came up:  After going through the protocol to make a print, just before the image prints PE does a very fast auto correction that basically ruins all the color correction I have made on the image.  How do I disable this function?

    Hi and thanks for your reply. I checked the settings under "Print", "More Options", then "Color Management" and it only has "Print Space", none of the three options that you said I should have.  Am I looking in the wrong place?
    Date: Mon, 3 Sep 2012 11:14:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problem with Photoshop Elements Printing
        Re: Problem with Photoshop Elements Printing
        created by 99jon in Photoshop Elements - View the full discussion
      Check your color management by clicking More Options in the print dialog There are basically three options:1) Printer Manages Color2) Elements Manages color3) No color Management Make sure everything is consistent e.g. if you choose Elements manages color make sure color management is switched off in the print driver. 
         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/4669848#4669848
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4669848#4669848. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements 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.

  • Y have problems with Photoshop Elements 12  Bug after reinstallation complet  Impossible working ??

    Morning !
    We have many problems with PHOTOSHOP ELEMENTS 12 ?
    After installation on MAC OS X   YOSEMITE  .
    S O S !!

    Exporter vers photoshop do you receive any specific error messages?  In what way is Photoshop Elements 12 not working?

  • Problems with Photoshop Elements 11

    I have a problem with Photoshop Elements 11, which i bought last week. Installing was completed according the instructions. When I started to use the program my one year old HP-computer with Windows 8.1 informed that there a failure in the Photoshop program and the did not open.

    attach a screenshot of the error message.

  • Problems with Photoshop CS5.1

    Hello everyone, I'm having some problems with Photoshop, it simply doesn't work as it should. When trying to resize the brush, the cursor changes shape and if I click, it won't, for example, paint where the cursor is pointing at, but about two inches diagonally. Then, the liquify tool freezes and I have to zoom in/out in order to make it work again, the brush disappears when changing the size, and again the cursor changes into something else and doesn't make any adjustment to where it's pointing at, but to a lower section. It's annoying to keep working like this! According to the update manager, everything is up to date. My current OS is Lion 10.7.2. Does anybody know how to fix this or at least why it is happening? I asked in the Adobe forums and I was told that it was Apple's fault (obvious response haha), and that a software update should come up to fix this driver problem or something. I'm not sure of what this is but I can't work like this. Thank you in advance.

    What it means is Adobe is feverishly working on a solution.  Apple has no control over Adobe's products.  They may make spec changes to allow for better support of other data formats, and the GUI, and security of the operating system, and Adobe is always in the loop on http://developer.apple.com/  If they can't make Lion work with their software, it is partly due to the immense size of their software and not being able to modify such software without significant error checking, and partly due to possible changes that Apple may have made.  One should never upgrade a production environment until one knows all one's software is compatible for all one's needs.  Having a test machine, or a test hard drive to see if an upgrade works is probably best until migrating an entire environment to a new system.  And always backup your data prior to upgrading.  A clone backup offers the quickest recovery time.  Carbon Copy Cloner is a great solution for external hard drives, and so is Superduper.

  • Little problem with Photoshop ....

    Hi. I have a little problem with photoshop CS 4. I use a color replacement tool to change a color in some details... but when i set new color, on pictures entries only or grey or black colors and nothing other... i dont known why.... please help . Thanks. Sorry for bad english

    Usually the Color mode is the one you want for the color replacement tool, you
    might have it set to luminosity or your trying replace black or white colors.
    MTSTUNER

  • Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks

    Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks Ben  [email protected]

    Hello Trevor
    Thanks for your message. You can custom set pages but there are no preset of page sizes like A4, A3, ect. I cannot click the size preference, nothing comes up
    Ben

  • Problem with a nokia 5310 xpress and a bluetooth

    i have problem with a nokia 5310 xpress and a bluetooth!i can transfer anything from my phone to pc with or without pc suite! but when i want to transfer files from pc to phone i doesen"t work! with pcsuite soethings work but very slow! i want to transfer files witout pcsuite !
    the blue tooth adapter it is dongle and it the software that i use is BlueSoleil 2.6.08
    CAn anyone help me?

    I'm having bigger problems...
    the screen goes all white and off after a lil while....
    Not even the vendor could do anything....

Maybe you are looking for

  • Why is Bridge CS5.1 showing same .nef file twice?

    I just upgraded from CS3 ti CS5.1 last month and since then Bridge will display a few of the .nef files I am working on twice. It seems to be completely at random, a folder with a few hundered .nef files will have 5-10 files that are showing twice. T

  • Nokia asha 201 Browser

    Hello , I have a serious problem. I am using Asha 201. Today I update my browser. But after updating, I couldn't open the browser. It shows the message "Conflicting Application". Please help me.  Thank you.

  • Method paintComponent

    I have a class that extends Jpanel . This class is in a JApplet . When I call the method paintComponent of JPanel from the JApplet , I want only paint in the JPanel. Instead the paint is done outer the JPanel. In The JApplet I call paintComponent of

  • What to do when the client asks for changes after final audio mix?

    Sometimes a client will want changes after the final audio mix has been done. That is, I've already sent the project from Premiere Pro to Audition, done a master mix, and sent it back to Premiere Pro. If I'm then asked to make changes to the video, I

  • 0CCA_C11 Infocune : Update Rule Migration Error

    Hello, I have installed the cube 0CCA_C11 from the standard BI content and started the migration of the update rule. Here, i am getting an error in one routine. There is one field in the cube "0CO_REPLINE", which is mapped with all fields of infosour