Correction - Elements 12 problem using Windows 7

I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
Organizer appears to open without problem, but I do not use it.
Apologies for the error in the title of the previous attempt!

I located the relevant folder and file on the C drive.
Holding the three keys down and double-clicking etc as instructed produced
no response. However, double-clicking before pressing and holding the three
keys did produce the prompt. I deleted the settings as required.
Unfortunately after I opened PSE Editor there was a delay of about 5
seconds before the error message returned and Windows closed the program.
So no further progress. I await your further advice!

Similar Messages

  • Can't open RAW photos on elements 10 using windows XP. is there a solution?

    i'm using a Nikon D3300 and can't open RAW photos on elements 10 using windows XP. none of the plugins i've tried worked.
    please help.  i really don't want to have to buy a new version of elements or a new computer.

    Hi,
    Unfortunately the Nikon D3300 requires camera raw 8.4 which is not compatible with PSE 10.
    Even worse, the DNG Converter 8.4 will not run on a XP or Vista comtuter.
    I don't know if the software that came with the D3300 will run on the XP system but if it does, your only option would be to use it to convert the NEF files to TIF files and then PSE 10 will be able to use the TIF files.
    I think that you really need to think about upgrading your system sooner than later.
    Brian

  • Elements 7 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • TS4180 Issues correcting photo orientation using Windows Photo Gallery

    Photos downloaded from iPhone 4 to PC running Windows 7 can't be saved after editing (ie. rotation).  Message:  "This photo can't be saved because of a problem with the photo's file properties."  When I close that dialog box, another comes up with the message giving the error code: 0x80070057 saying that the photo can't be saved.  Someone suggested opening the photo in Paint and saving it as a jpeg file, but my photos are already in jpeg format.  Any help would be appreciated!  Thanks...

    As long as you've backed up your photos, what you use is really a matter of personal preference. To avoid duplicates, pick one program. Getting rid of duplicates that you already have is probably going to mean going through the photos one by one.
    For problems with Windows Software, you're probably better off posting on a Windows forum.
    Best of luck.

  • Why can't I sign in with my Adobe Account ID to my Adobe Photoshop Elements 10 using Windows 7 ?

    Why can't I sign into my Adobe Photoshop Elements 10 using my Adobe Account ID and password? I have Windows 7.

    marzart wrote:
    Why can't I sign into my Adobe Photoshop Elements 10 using my Adobe Account ID and password? I have Windows 7.
    Suggest that you contact Adobe support
    Contact | Adobe

  • SHARING IN ELEMENTS 13 USING WINDOWS LIVE

    I HAVE USED MANY OF THE ELEMENTS PROGRAMS AND JUST GOT VERSION 13.  I USED WINDOWS LIVE FOR SHARING BEFORE BUT CAN NOT GET IT TO WORK THE SAME WITH 13.  I AM USING A PC.

    Here are the steps to set up your email profile in EO13:
    Elements Organizer Help | Share files and slideshows by email
    Email configuration in Elements Organizer
    Please let me know if it does not help.
    Thanks,
    Anwesha

  • Problems using windows media player to transfer files to zen x

    All 9gs of my music is stored in windows media player music library.transferring it to zen xtra has caused many cds arriving at player with wrong content under different artists and some songs copied many times over. Is there a known conflict using windows player and zen xtra?I would use mediasource but my cds imported to ther interface with many not identified even thogh all my music was clearly labeled with artist, title and gnere in windows music library.Any help would be great. I cant get my 9gs of music into the zen without content mess u
    ps.
    thanks matt

    I, for one, am incredibly dissapointed in the portable file aspect of this player. i work in a PC store and we sell the Zen Touch , i also received one for christmas. At first i was very happy that i could also use it to carry my files to and from school but all my hopes were extinguished when i realized that the computers i would transfering to and from had to have the creative software installed. Obviously, Creative's target consumers are of the Student generation, so they must have known that we, as students , use computer labs in school. So why not add the firmware to override the creative software when transfering data files? What's written on the box and the sales pitch creative uses is extreamly misguided and alot of the buyers have come back to the store with complaints. They arn't happy, i'm not happy, creative should fix this porblem, and yes it is a problem and not "part of the design".

  • Problem using Windows Media Player 10 to put music on my Muvo V

    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish

    Eilish wrote:
    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish
    Thanks for that piece of information. Player is definitely working as I have about 20 songs on it through realplayer.
    Put a folder of new songs on desktop and a shortcut to my Muvo V200 but when I try to drag and drop it won't let me. All songs on the Muvo are in the root folder. Am I doing it the proper way? I'm afraid I'm a bit moronic when it comes to computers so if you can be patient perhaps you might like to send it again to me idiot speak.
    Really appreciate it
    Eilish

  • Unable to launch Trial version of Elements 12  Using Windows 7  64bit

    Hi
    I am unable to launch the trial version of Elements 12.  I am using Windows 7  64 bit originally downloaded and used through a Mozilla Firefox browser.
    The photo editor starts to launch but then reverts to 'Quit' screen, with no further options

    Hi wolfrider,
    Please try running the application as' Administrator' and check.
    Was it running fine before?
    You can also try the following basic troubleshooting steps :
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-adminis trator-account-on-windows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-servic es-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing and check.

  • Ms-6309 v1.0: USB problem using Windows XP

    Hello!
    I have CELERON 950 with msi ms-6309 v1.0 motherboard. Bios version: 1.9.
    I'm using Windows XP. I cann't plugin any USB device such as mouse or flash drive, because while plugining operation system is freezing. I cann't do
    nothing. The only way is to reset by button.  
    How to solve this
    problem?
    Thank you!

    Installation of the following drivers and updates has not solved a problem:
    SP1 for Windows XP
    VIA 4-in-1 from http://www.viaarena.com
    USB 1.10 Filter Patch from http://www.viaarena.com
    spec of the machine:
    Motherboard: msi ms-6309 v1.0
    cpu: celeron 950 MHz (bios tetect  as 1GHz)
    memory: 320mb
    video: ATI Radeon 9000 Pro
    Bios version: 1.9
    OS: Windows XP RUSSIAN
    If device plugged  before loading system - the device works normally (i can work with my flash drive).
    With Windows 98, Windows 2000 - USB works normally.

  • Scanner problems using windows 8 and canon pixma mx432. printer is set up but wont scan

    I have my printer installed on my computer already but the scanning function is not even coming up to be able to use it. I recently was given a new computer and it has windows 8 on it. it took a lot to get it to even be installed on the computer but the scanner portion won't work. When I bring it up it has the section where the scanner should be but nothing is there to push. What can I do to get this function working correctly?

    All the drivers for 4350D and MF4690 and a few more models I owned in a few more offices have the scanner bug in the drivers for Windows 8. No new drivers been released to fix the problem all those scanners I owned have. Now Canon just put the Windows 8_Notice_ENG inside the driver package and includes the [Limitations During Operation] that says:
    When using the scan function while the device is connected to a computer by USB, removing the USB cable and then
    plugging it back in or turning the device off and then on will cause the scanning function to be unable to execute. If this
    occurs, please restart the computer.
    Seriously, Canon? Restart the computer everytime it doesn't work, and I have to go through the hazzle saving all the files I am working on just to restart to get the scanner to work? I have tried to mod the newer drivers for MF4770n and a few new models to make it work with those 4350D 4690 models, it will then detect the scanner without restart, but the scanner won't produce a readale image using my modified drivers. Now stick with VM Player running Windows 7 to scan the files with those old scanners. I won't buy another Canon scanners for my future needs if Canon just can't fix the Windows 8 driver problems all those scanners I owned.

  • Problem using window.showModalDialog in  Internet Explorer7

    hi,
    can any one tell me the issues related with <b>window.showModalDialog</b> and Internet Explore 7 as i am getting error when i am trying to log out a page where i am using ShowModalDialog
    Thanks

    Hi Abhai,
    Please find the reg file searching "ie6sp2" in google. Download  and apply it on your computer and  then try to see <b>window.showModalDialog</b> .I think reg file should fix your problem.
    Regards,

  • When I attempt to download a Adobe PDF document I get a plackard saying "There was an error processing a page. There was a problem reading this document (109)." I don't have the problem using Windows Explorer. Can you help?

    I don't have any details other than what I have explained in the question. Have always been able to download Adobe files in the past. Tried Windows Explorer and it worked. Don't like Windows Explorer.

    Using FF 5.0.
    I've encountered this opening the following file:
    * http://download.esha.com/fandc/error/sqlfc.pdf
    The error occurred the first time I tried to open, but subsequent times it has opened fine. A co-worker gets the error everytime when trying to view in his FF 5.0. It has always opened fine in IE for both of us (like the OP meant, I think -- I don't like IE. Not even a little bit!).
    Downloading the file seems fine (opening in Acrobat Reader itself).

  • Nokia Lumia 530 backup problem (Using Windows 8.1)

    My phone has suddenly stopped backing up, even though it keeps telling me it hasn't been backed up for some time, and needs to be backed up. When I tell it to back up, it gets to about 99%, and then I get the message "there was a problem backing up your settings. Try again later."  What exactly does "later" mean? I've been trying at various times of the day every day for about 4-5 weeks now. From what I've read on the internet, this does appear to be quite a widespread problem.
    Other things I have tried:
    Turning the phone off and back on again.
    Unchecking the "Apps back up" button
    Uchecking the "Settings back up" button
    Checking both backup buttons again
    Deleting previous back ups using my phone
    Logging into One Drive on my laptop and manually deleting previous backups
    Changing the screen time out on my phone to 15 minutes (as opposed to 1 minute)
    Making sure I have a good phone and wifi signal, and having the phone plugged into the charger
    None of this has had any effect!!!!
    The strange thing is that when I go onto One Drive, it tells me that it did back up (I've only got the one phone, so there's no chance I'm getting confused between phones.)
    Please does anyone have any advice? Also, is there a way of telling my phone to automatically back up at regular intervals, eg once a week, or once a month, so I don't have to keep thinking about it?
    Thank you for reading all this!

    Hi, TulaTheQuang. Have you tried rebooting your phone by pressing the power and volume down keys simultaneously for 10-15 seconds? Also, check if all system apps on your phone are up to date. Go to Settings> applications> store> check for updates. Check if you will be able to successfully backup your files. 
    We'll wait for your response. 

Maybe you are looking for