Can't save photos- "can't complete b/c of program error"

My husband and I are "classic" adobe users of element 5.0. Has always worked great except recently can't save pictures... only comes up saying "can not complete your request because of a program error" Any advice?

If you are using Photoshop Elements 5 that is a very old program.  Probably best advice is to have you repost in the PSE forum at http://forums.adobe.com/community/photoshop_elements
Also, I strongly recommend you immediately change your Adobe ID to some name without your email address.  This opens you up to spam.
Good luck.

Similar Messages

  • How can I save photos on my ipad3 from emails and Facebook. Since downloading iOS6 I am not offered SAVE PHOTO only DONE? Help me please.

    How can I save photos on my ipad3 since downloading iOS6 I do not get SAVE PHOTO option only DONE. Please don't be too technical I am74 and really only use my ipad for photos and emails

    If the photos that you are wanting to delete are also in your Camera Roll then you can delete them from the camera roll

  • How can I save photos that I have modified in Photoshop Elements to my computer hard drive?

    How can I save photos that I have modified in Photoshop Elements to my computer hard drive folders?

    When finished editing click File->Save/Save As and you can either overwrite the original file or rename it and save as new file keeping original intact.
    You can find more info on saving and various settings here http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f89cffc612e28adab65-7 fda.html#WS287f927bd30d4b1f89cffc612e28adab65-7fd7
    Thanks,
    Garry

  • Can't save photos

    I can't save photos from google images anymore when I press the photo it doesn't give me the option to save anymore
    Please help

    If you are viewing google images via Safari, make sure you tap the image once to bring it up big (where it has a black border) then hold the image down with your finger.  If you hold the image down when it is not big, you will not get the option to save image.

  • After updating to iOS 6.0, I can't save photos.  Why?  Someone can help me?

    Could some one help me letting me know why after updating to iOS 6.0, I can not save photos to my iPad?  I'll appreciate your help.
    Regards
    Mariela

    Hi Kcam
    Have you also updated your iOS devices to 4.3.2?
    Taylor

  • Can't save photo in folder

    Help! I cannot crop and rename a photo and save it to a folder. Instead of the photo I get a blank icon that looks like a page with one corner folded down. The new name is below the blank icon. If I try to save it again I get a message that the name exists do I want to replace it? if I do, I get a second icon with no photo image.

    Hi Barbara B.
    Many thanks for your help! I am not using a slash, but I sometimes use 
    periods for instance when using a name such as A. B. Smith. Could that be 
    causing the problem? I also use a - sometimes. and have many names in folders 
    using that. It has not been a problem before.
    Steve
    In a message dated 1/25/2014 3:35:31 P.M. Eastern Standard Time, 
    [email protected] writes:
    Re:  Can't save photo in folder
    created by Barbara B. (http://forums.adobe.com/people/Barbara+B.)  in 
    Photoshop Elements - View the full  discussion
    (http://forums.adobe.com/message/6052245#6052245)

  • Can't save my illustrator files. I keep getting "unknown error" message. Using version 6 on a macbook pro. OSX 10.9.5

    Can't save my illustrator files. I keep getting "unknown error" message. Using version 6 on a macbook pro. OSX 10.9.5

    42nato,
    You may try the list (skip 5) in this case).
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Could not save changes to this script because of a program error. -2706

    OK, this is very odd! Please try the following and let me know your results:
    1) Create a new script with the following example code:
    set testList to {}
    repeat with i from 1 to 8145
    copy i to end of testList
    end repeat
    2) Save the script as an Application (name it whatever you like).
    3) Launch the newly created Application and see if you get the same error message I am getting...
        *Could not save changes to this script because of a program error.*
        -2706
    If you replace the number 8145 with 8144 (or any number less than 8145) the script runs without error. Any number greater than 8144 returns the error message shown above. Maybe there's a reason for this that I'm overlooking or is this another bug?
    I looked up error code -2706 ([HERE|http://developer.apple.com/Mac/library/documentation/AppleScript/Concept ual/AppleScriptLangGuide/reference/ASLRerrorcodes.html]) which says it is a "*Stack overflow.*"
    Thanx in advance for any insight on this!!
    NOTE:
    The only workaround I've found for this is to make sure the script resets the variable before it quits. Like this:
    set testList to {}
    repeat with i from 1 to 8145
    copy i to end of testList
    end repeat
    set testList to ""

    Hey Pierre, thanx for taking the time to scratch your head with me!
    Very odd indeed.
    Glad it's not just me that thinks this!
    I've also noticed that the problem occurs even when you try to save the script as a compiled script. That's possible as long as you haven't run the script. Once you have run it, trying to save it seems impossible. You get the message: *“The document “Document title” could not be saved.”*
    I've noticed the same thing as you and have experienced this extra error several times while trouble shooting this problem!
    On the other hand, is there any good reason for which you would want to save such a big list? Are there any drawbacks to the workaround you've found?
    I don't want to save ANY variable EVER unless I explicitly tell my script to do so! This variable is not a property, so why would my script want to save it? I haven't noticed any drawbacks to the workaround. Setting the list variable to "" or {} (or ANYthing with under 8145 items) seems to work fine. I just find it weird that my script can't "*save changes to itself*"?! What is there to save? It's just a variable that should release after my script has run ...unless I'm completely misunderstanding how variables work after ALL these years of scripting.
    Btw, the following version of the script (as you probably already know) is much faster, although it doesn't change anything to the result:
    *set testList to {}*
    *set testListRef to a reference to testList*
    *repeat with i from 1 to 8144*
    *copy i to end of testListRef*
    *end repeat*
    Yeah, it definitely runs much faster this way! I just posted a quick example that would illustrate the 8144 list count limit. My script sets a variable to a list of numbers contained in a text file. This list is almost always rather large! Right now there are over 20,000 items in this list of numbers.
    Again, thanx for your time my friend!!

  • Photoshop CS2 Could not complete request because of program error

    My Photoshop CS2 stopped opening JPEG files from the Bridge. First it freezes and then say Not Responding. After that it brings Could no complete request because of program error. I have tried unistalling and reinstalling with no joy. I have also found out that i cannot open a file even directly from photoshop itself. I have not done any work for the past three days. Please help

    I know this is probably a little late for your issue, but for anyone else having trouble with this...
    I had this exact same problem, and my photo had also been previously worked on and saved as a jpg in CS4.
    I saved it as a psd and then opened it back up in CS4, where it saved as a jpg with no problems.
    So, it seems to be a problem with the different versions of photoshop. If you have access to CS4, that could solve your problem. Otherwise, have anyone sending you files from later versions save down to your version, and that might help.

  • Does anyone know how to fix an error in cc photoshop on Win8 that says puppet warp could not complete request due to program error?

    Does anyone know how to fix an error in cc photoshop on Win8 that says puppet warp could not complete request due to program error?

    Questions on using a specific program should go in that program forum
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How can I save photos to a CD?  (Elements 11)

    How can I save a group of photos to a CD?  Elements 11

    lolagolucky:
    Welcome to the Apple Discussions. I'm not sure how you burned that CD but one way to get a PC compatible disk of the jpgs is the following:
    1 - insert a blank CD in your drive and mount it on the desktop.
    2 - select all of the files you want to transfer.
    3 - go to the File->Export menu option.
    4 - in the Export Photos pane click on File Export
    5 - select full sized images and check the Use extension box.
    6 - click on the Export button.
    7 - in the navigation window that comes up navigate to the CD on the desktop and select it and click the OK button.
    8 - when the export is complete check the files on the CD to make sure they are the full sized files (I got aliases one time so check before all burns).
    9 - drag the CD to the Trash icon to burn the disk of photo.
    This method create a universal format readable by both PCs and Macs. Good luck.

  • I can't save photos from mail to desktop or iPhoto all of a sudden! 10.8.5

    I have an iMac, OS 10.8.5.  Up until a few months ago I was able to save photo email attachments to iPhoto or my dekstop with no issues but now I can not.  I try to drag photo attachments to either place, it it doesn't work. I try to right click for options, nothing.  I'm really not sure what the problem is but it is very frustrating!

    Please follow these directions to delete the Mail "sandbox" folder.
    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. 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. Post your results.
    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 (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Photostream overly complicated, can't save photos to Camera Roll

    For those of us who like to manage our photos manually, why is it so overly complicated to manage images between Photostream and Camera Roll?
    First, I just want to save photos from my old iPhone, which I added to from iPhoto to my Photostream because it seemed to be the only way, to my Camera Roll. This is not possible though. When I go to Photostream and select photos then select "Add To" it shows Camera Roll but it does not allow me to select Camera Roll and add them. The only option I can select is to create a new album within Photostream. If I just select an image in Photostream and then hit the share button, it also does not give me a save to Camera Roll option.
    I only want to use the Camera Roll, yet even with Photostream turned off, photos I take on my iPhone still show up in the Photostream.
    I just don't understand why this is so complicated. I've seen forum discussions that say it's easy to save Photostream photos to Camera Roll, but I've tried every way mentioned but it never gives me the option of saving to Camera Roll.
    Help please. Thanks.

    Create an album for your old photos.  Connect your phone to iTunes on your computer. On the phone's summary page tap the Photos tab. Check the Sync photos from checkbox. Click the button next to the checkbox.  Navigate to the folder on your computer where the pictures are located.  Add them to your album.
    Doing this in reverse is the only way to get these pictures back off your phone.
    I agree iCloud / Photostream for photos is way to complicated and useless, but it is locked down to keep people from trying to use it to share commercial videos and music via the shared photostream. At least that is my guess.

  • Can't Save Photos on Iphoto

    Hello, so I recently upgraded my MacBook Pro to the new OSX Mavericks and now I can't save my photos on Iphoto. Before I could totally just take a picture no problem but now I get the message "Photo Booth encountered an error when trying to save your photos. Your photos cannot be saved at this time." I checked the permissions, that's fine and I also tried looking for the "Photo Booth" folder and I couldn't find it. I tried just manually creating it but that didn't work. Is anyone else having this issue? Any help would be appreciated.

    I had the exact same issue and this is what I did to solve it.
    The Photobooth photo library was in my documents folder (for some reason) instead of my pictures folder. I copied the library, moved it to my pictures folder, and opened the library.
    When I re-opened Photobooth, it asked me if i wanted to make this new library the default. I said yes and now everything is working correctly and I can save the photos I take.

  • HT201317 why my camera can't save photo on my album

    hello,,,i have 1 question about my photo...why my camera can't save my photo on my album, it said saving failed,,what happend actually,,,i really can't understand why this case has happen on my ipad 2. Another problem is when I crop my picture in album then save,,it's still can't be saved and being loading always as stuck..and I hope you can get solution for my question...thanks a lot

    If the album art is embedded in the MP3 file in an APIC frame of an id3v2 tag then the music player will display it.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

Maybe you are looking for

  • TS2090 there is no audio when I connect my macbook to the sony tv through hdmi

    I am trying to connect my macbook pro to my sony tv through hdmi cable, but I can only see the video but there is no audio on the tv. Please help?

  • Migrating iCal

    I'm moving from a 10.5.8 machine (now dead, but Library was backed up) to a 10.6.1 machine by drag-and-drop, but cannot get iCal to recognize the files I have brought over. A July 14, 2009 post from Ferd II describes how to Import corestorage.ics fil

  • How to see output levels in new I-tunes?

    Hello, in the old I-tunes, I used to be able to see the output levels of the files in the box where the title appears. This really helped get uniform levels between all the files. In the I-tunes I just downloaded yesterday, that option seems to be go

  • IPhone Photos edited with iOS 7 losing adjustments in Aperture

    I shot a few photos with iOS 7 this weekend while at the cottage and was importing them into Aperture (which I use to manage my rather large collection). I noticed that for some reason some of the adjustments were now missing. Yes my crops and auto e

  • Echoing line number in php?

    My php code is full of diagnostic lines like: echo ('<p>L266 $foo = '.$foo.', $xx ......</p>'); Normally these are commented out, but when I get into trouble I remove the comment flag from the nearest such statement, so that it lists the current stat