Why can't my edit program open? It shuts down when I press edit...

When I try to open photoshop 12, I click on the icon on my desktop, as I have done numerous times before, & the beginning page comes up where you choose if you want to organize or edit. As soon as I press edit, the screen shuts down. I did notice that when I put my mouse over Edit, it is just an arrow not a "hand"...tried
several times. Have used this program successfully for the past week many times as I am in a photo show.  Please get this working again for me...I have a deadline \
to meet !!

Larcar
If your program is Photoshop Elements 12 (photo editor), you are in the wrong forum. This is the Premiere Elements Forum (video editing).
Please repost your question in the Photoshop Elements Forum here or wait for a moderator to see your post and move it from here to there.
http://forums.adobe.com/community/photoshop_elements
As an aside starter....have you tried deleting the Photoshop Elements settings file by shortcut or other?
http://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements. html#main_Photoshop_Elements_preferences_
If you really do have Premiere Elements 12, please let us know, and we will troubleshoot that program's issues.
Thank you.
ATR

Similar Messages

  • Illustrator CS5 won't stay open it shuts down when started?

    I have the CS5 creative suite and I bought it when it was first available. I have used it for several years with no major problems. In the past two days every time I start up my Illustrator program it goes through all the start up proceedures and as soon as it has come up it shuts the program down. I am on a MAC and I am experienced with the computer.

    Hi again,
    OK, I added a new user account and Illustrator opened just fine in the new account. Can you tell me why and what I will have to do in the original account to get Illustrator to work again?
    Dale Heins
    Ad Help & Creation Station Central
    2740 9th Lane - Suite 311
    Anoka, Minnesota 55303
    Ad Help: 651-600-5111
    Creation Station Central: 763-434-1428
    email: [email protected]
    Creation Station Central
    To find out what Creation Station Central can do for you visit:
    YouTube - CSC-2011-H264-2.mov
    Dale's Facebook page
    Dale Heins (CreationSC) on Twitter
    Welcome, Dale! | LinkedIn
    Find me at about.me/daleheinsCSC
    This E-mail is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. If your are not the named addressee or an agent responsible for delivering this message to the named addressee, you are not authorized to read, print, retain, copy, disseminate this e-mail or any part of it. If you have received this e-mail in error, please notify us immediately.

  • How come my program doesn't shut down when all windows are closed?

    As of Java 1.5 (maybe earlier) java is supposed to exit when all windows have been closed. I have confirmed that this happens in a simple case of displaying 2 JFrames and closing both. Can anyone tell me why it's not happening in the case of 2 frames and 1 dialog here?
    * Created on Jul 12, 2006 by @author Tom Jacobs
    package tjacobs.ui;
    import java.awt.Component;
    import java.awt.Dialog;
    import java.awt.Frame;
    import java.awt.GraphicsConfiguration;
    import java.awt.HeadlessException;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    public class ModalOnParentDialog extends JDialog implements ComponentListener,
              WindowListener {
         private Component mOwner;
         private boolean mParentOnly = false;
         public ModalOnParentDialog() throws HeadlessException {
              super();
              init(null);
         public ModalOnParentDialog(Frame arg0) throws HeadlessException {
              super(arg0);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, boolean arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1, boolean arg2)
                   throws HeadlessException {
              super(arg0, arg1, arg2);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1, boolean arg2,
                   GraphicsConfiguration arg3) {
              super(arg0, arg1, arg2, arg3);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0) throws HeadlessException {
              super(arg0);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, boolean arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1, boolean arg2)
                   throws HeadlessException {
              super(arg0, arg1, arg2);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1, boolean arg2,
                   GraphicsConfiguration arg3) throws HeadlessException {
              super(arg0, arg1, arg2, arg3);
              init(arg0);
         private void init(Component c) {
              mOwner = c;
              addComponentListener(this);
              addWindowListener(this);
         public void componentResized(ComponentEvent arg0) {}
         public void componentMoved(ComponentEvent arg0) {}
         public void componentShown(ComponentEvent arg0) {
              doModalOp();
         public void componentHidden(ComponentEvent arg0) {
              doModalOp();
         public boolean isParentOnly() {
              return mParentOnly;
         public void setParentOnly(boolean b) {
              mParentOnly = b;
         public void setModal(boolean b) {
              super.setModal(b);
              //mModal = b;
              doModalOp();
         private void doModalOp() {
              if (mOwner != null) {
                   mOwner.setEnabled(!super.isModal() || !isVisible());
         public boolean isModal() {
              return super.isModal() && !mParentOnly;
    //     public boolean isParentModel() {
    //          return mModal;
         public void windowOpened(WindowEvent arg0) {
              doModalOp();
         public void windowClosing(WindowEvent arg0) {}
         public void windowClosed(WindowEvent arg0) {
              doModalOp();
         public void windowIconified(WindowEvent arg0) {}
         public void windowDeiconified(WindowEvent arg0) {}
         public void windowActivated(WindowEvent arg0) {}
         public void windowDeactivated(WindowEvent arg0) {}
         protected void finalize() throws Throwable {
              super.finalize();
              removeComponentListener(this);
              removeWindowListener(this);
              mOwner = null;
         public static void main(String[] args) {
              JFrame jf1 = new JFrame("1"), jf2 = new JFrame("2");
              final ModalOnParentDialog d = new ModalOnParentDialog(jf1, "3");
              d.setModal(true);
              d.setParentOnly(true);
              JButton b = new JButton("Show");
              b.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        d.setVisible(!d.isVisible());
              jf1.setBounds(0,0,40,40);
              jf2.setBounds(40,40,40,40);
              jf2.add(b);
              d.setBounds(80,80,40,40);
              jf1.setVisible(true);
              jf2.setVisible(true);
              d.setVisible(true);
    }

    I fixed it
    * Created on Jul 12, 2006 by @author Tom Jacobs
    package tjacobs.ui;
    import java.awt.Component;
    import java.awt.Dialog;
    import java.awt.Frame;
    import java.awt.GraphicsConfiguration;
    import java.awt.HeadlessException;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    public class ModalOnParentDialog extends JDialog implements ComponentListener,
              WindowListener {
         private Component mOwner;
         private boolean mParentOnly = false;
         public ModalOnParentDialog() throws HeadlessException {
              super();
              init(null);
         public ModalOnParentDialog(Frame arg0) throws HeadlessException {
              super(arg0);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, boolean arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1, boolean arg2)
                   throws HeadlessException {
              super(arg0, arg1, arg2);
              init(arg0);
         public ModalOnParentDialog(Frame arg0, String arg1, boolean arg2,
                   GraphicsConfiguration arg3) {
              super(arg0, arg1, arg2, arg3);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0) throws HeadlessException {
              super(arg0);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, boolean arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1)
                   throws HeadlessException {
              super(arg0, arg1);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1, boolean arg2)
                   throws HeadlessException {
              super(arg0, arg1, arg2);
              init(arg0);
         public ModalOnParentDialog(Dialog arg0, String arg1, boolean arg2,
                   GraphicsConfiguration arg3) throws HeadlessException {
              super(arg0, arg1, arg2, arg3);
              init(arg0);
         private void init(Component c) {
              mOwner = c;
              addComponentListener(this);
              addWindowListener(this);
         public void componentResized(ComponentEvent arg0) {}
         public void componentMoved(ComponentEvent arg0) {}
         public void componentShown(ComponentEvent arg0) {
              doModalOp();
         public void componentHidden(ComponentEvent arg0) {
              doModalOp();
         public boolean isParentOnly() {
              return mParentOnly;
         public void setParentOnly(boolean b) {
              mParentOnly = b;
         public void setModal(boolean b) {
              super.setModal(b);
              //mModal = b;
              doModalOp();
         private void doModalOp() {
              if (mOwner != null) {
                   mOwner.setEnabled(!super.isModal() || !isVisible());
         public boolean isModal() {
              return super.isModal() && !mParentOnly;
    //     public boolean isParentModel() {
    //          return mModal;
         public void windowOpened(WindowEvent arg0) {
              doModalOp();
         public void dispose() {
              //setVisible(false);
              //doModalOp();
              if (mOwner != null) {
                   mOwner.setEnabled(true);
              removeComponentListener(this);
              removeWindowListener(this);
              super.dispose();
         public void pack() {
              super.pack();
              addListeners();
         private boolean addListeners() {
              WindowListener[] listeners = this.getWindowListeners();
              if (listeners != null) {
                   for (int i = 0; i < listeners.length; i++) {
                        if (listeners[i] == this) return false;
              addComponentListener(this);
              addWindowListener(this);
              return true;
         public void show() {
              super.show();
              addListeners();
         public void show(boolean b) {
              super.show(b);
              addListeners();
         public void windowClosing(WindowEvent arg0) {}
         public void windowClosed(WindowEvent arg0) {
              doModalOp();
         public void windowIconified(WindowEvent arg0) {}
         public void windowDeiconified(WindowEvent arg0) {}
         public void windowActivated(WindowEvent arg0) {}
         public void windowDeactivated(WindowEvent arg0) {}
         public static void main(String[] args) {
              JFrame jf1 = new JFrame("1"), jf2 = new JFrame("2");
              final ModalOnParentDialog d = new ModalOnParentDialog(jf1, "3");
              d.setModal(true);
              d.setParentOnly(true);
              JButton b = new JButton("Show");
              b.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        d.setVisible(!d.isVisible());
              jf1.setBounds(0,0,40,40);
              jf1.setDefaultCloseOperation(jf1.DISPOSE_ON_CLOSE);
              jf2.setDefaultCloseOperation(jf2.DISPOSE_ON_CLOSE);
              d.setDefaultCloseOperation(d.DISPOSE_ON_CLOSE);
              jf2.setBounds(40,40,40,40);
              jf2.add(b);
              d.setBounds(80,80,40,40);
              jf1.setVisible(true);
              jf2.setVisible(true);
              d.setVisible(true);
    }

  • After installing Photoshop, it opens but shuts down when files are opened.

    Photoshop installed from CS5. After opening new document or opening an image it closes with a message saying "Adobe CS 5 has stopped working"
    It has been uninstalled and re installed several times.

    try resetting preferences by holding down shift-ctrl-alt (win) or shift-cmd-alt (mac) while starting ps.  you'll see a confirmation dialog if done correctly.
    if that fails uninstall, clean and reinstall per, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Why can't my adobe programs be read?

    Why can't my adobe programs be read?

    I don't know of any program from Adobe that will do that, but I'm probably just misunderstanding.
    Let's take just one of these files.
    What type of file was it before this happened?
    What happens now when you tried to open them? Please give error messages EXACTLY.
    "Can't read" tells us nothing that lets us help you, sorry.

  • Why can't I edit phone numbers in the dialer?

    If I find a number on the Internet, it is often (at least in Sweden) typed in with country code and then an optional 0 if you're calling domesically, e.g. +46 (0) 8-402 60 00. This number isn't dialable because of the extra 0 inserted there from misguided benevolence.
    My phone is also inside a switchboard and I need to add either a 0 or replace the first 0 with +46 (for a Swedish number) in front of every number to be able to make a call. Unfortunately the only way I can find to edit a phone number in the phone number dialer is to erase them from the last digit. Not very efficient if you want to replace the first digit!
    Why can't I edit phone numbers anywhere in the string of numbers as anywhere else in the phone and its apps?
    Now I have to copy the number either into a new contact or the notepad, edit and then dial.

    Copied from my answer to your other thread for your convenience:
    Unlike the iPhone, Android allows developers access to basic system functions. Although this means there are lots of apps that do interesting things like scheduling text messages (the one thing I really miss from when I had an Android), it also means the OS is significantly less secure. Apple's choice was security and stability. Google's was open platform at the expense of security and stability.

  • Why can't I edit images in the develop module? It's telling me folders cannot be found.

    Why can I not edit images in the develop module? It is telling me that the source folders cannot be found.

    When I click on the RSS button, I got this
    message:
    "Safari can’t open the page “feed://wwwhome.cs.utwente.nl/~fiorezet/UT/Publications/rss.xml”. The error was: “unknown error” (NSURLErrorDomain:-1)
    Will need to look further into that one.
    I used the Feed Validator Website to check my RSS files. The Website says: "This feed does not validate". The site also shows in which lines the errors are. The link below shows what I mean:
    http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwwwhome.cs.utwente.nl%2F%257 Efiorezet%2FUT%2FHome%2Frss.xml
    What should I do to solve my problem?
    Regards,

  • Why can't I edit the Word doc I converted from a PDF?

    Why can't I edit the Word doc I converted from a PDF?
    Help! That is why I bought this software!

    Hi linda007,
    If you can't edit the file once it's converted to Word, it could be that the PDF was created from a scanned page, and then image text wasn't converted to searchable text. ExportPDF should perform Optical Character Recognition by default, but it can be disabled in Reader. Do you know whether OCR was disabled when you converted the page? If it wasn't, make sure that the correct language was selected for OCR. This option appears at the bottom of the ExportPDF panel in Reader, and in the Document Language (for Text Recognition) pop-up menu that appears after you select your file to convert in the ExportPDF online service.
    If everything seems to have been set correctly, and you still can edit the text, please try triple-clicking to select the text in Word. Did that do the trick?
    Best,
    Sara

  • Why can't I edit or delete Address Book "On My Mac" or sync with iCloud?

    Why can't I edit or delete Address Book cards on my Macs, now that I've migrated to iCloud?  I can edit/delete if I go to iCloud, but the changes don't sync with my Macs.  What's happening, and what's a solution?  Just wait for Apple to fix a bug?

    On your mac, if your look at the left panel of the Address Book, you'll find general categories of "iCloud" and possibly "On my mac" - if you have contacts in the latter, then they are only local to your mac, they are not shared with iCloud.  If you don't have an "iCloud" category, then your mac(s) is not set up of iCloud.  Go to system preferences and look in iCloud.  Is the mac signed into iCloud, are contacts turned on for syncing?

  • Once I convert pdf to WORD, why can't I edit the WORD document?

    Once i convert PDF to WORD, why can't i edit the WORD document?

    Hi sophtex,
    Kindly refer this FAQ:Can't edit converted Word or Excel file
    Please let me know for further assistance.
    Regards,
    Florence

  • Why can't I edit my signature under email settings.

    Why can't I edit my signature under email settings.  I want to unbold the "Sent from my iPhone" and it will only unbold it when it is in italics  I don't want it in italics.

    Hi Sssswm,
    If you'd like to edit the email signature that is appended to email which you send from your iPhone, specifically to change the text style, please see the information below.
    Select text. Tap the insertion point to display the selection options. Or double-tap a word to select it. Drag the grab points to select more or less text. In read-only documents, such as webpages, touch and hold to select a word.
    You can cut, copy, or paste over selected text. With some apps, you can also get bold, italic, or underlined text (tap B/I/U); get the definition of a word; or have iPhone suggest an alternative. Tap to see all the options.
    Edit text - iPhone
    Take care,
    Alex H.

  • Had Acrobat 7.0 Pro on prior laptop.  Got new laptop and unable to load my purchased copy on new machine.  Getting message 0cx00000fd.  Why can't I transfer program to new computer?

    Had Acrobat 7.0 Pro on prior laptop.  Got new laptop and unable to load my purchased copy on new machine.  Getting message 0cx00000fd.  Why can't I transfer program to new computer?

    The Error is windows specific error. However try Downloading it from Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • Why can't i edit my project in imovie anymore??  (over 1 hr long) - is this a bug ?

    why can't i edit my project in imovie anymore??  (over 1 hr long) - is this a bug ?

    Hi
    There is a limiting factor that's easy to miss.
    • FREE SPACE on Start-Up (Mac OS) Hard Disk
    When this goes low then iMovie, Mac OS and all applications runs into problems. So to get a safe way to work (for me) I set a minimum that I try to never go lower than. (Sorry for strange sentence)
    I never let my Mac (Macintosh HD) go lower than 25GB free space. If it does - then I move away things to an external hard disk (always Mac OS Extended (hfs) formatted - as nothing else will do for VIDEO)
    Else - in iDVD Time is the limiting factor. (iMovie - I never run into any - my monster Vacation epos is >>6 hours)
    iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1) and iDVD 6 has the two last ones
    • Professional Quality
    (movies + menus up to 120 min.) - BEST (but not always for short movies e.g. up to 45 minutes in total)
    • Best Performances
    (movies + menus less than 60 min.) - High quality on final DVD (Can be best for short movies)
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6)
    (movies + menus up to 120 min.) - slightly lower quality than above
    Menu can take 15 minutes or even more - I use a very simple one with no audio or animation like ”Brushed Metal” in old Themes.
    About double on DL DVDs.
    Yours Bengt W

  • Why can't I edit this setting?

    Hi,
    I'm using WL 9.2.2 on Solaris. When I click on Deployments, select my deployment, click on "Lock and Edit", the checkbox next to "Path" is still disabled. What I want to do is change my path from the WAR file that is entered to a directory where I can explode my WAR and more easily edit files on the fly. I have verified that my server is shut down when I'm attempting to make these changes.
    Any suggestions or thoughts? Thanks, - Dave

    Thanks for your suggestion. It did not fix my problem but I continued poking around and fortunately I discovered this solution:
    File > Export to> Numbers '09
    The new file opened ans I was asked if I wanted to upgrade it.
    I answered YES and I now have a fully funtional spreadsheet.

  • Firefox covers the whole screen so I can not see other programs opened at the bottom of screen

    firefox covers the whole screen so I can not see other programs opened at the bottom of screen

    It is possible that the screen is too high and that the status bar and scroll bar fall off at the bottom.
    Open the system menu via Alt+Space and see if you can resize that window.<br />
    If that works then close Firefox to save that setting.
    See also:
    * http://kb.mozillazine.org/Resizing_oversize_window
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

Maybe you are looking for

  • Video card for HD and green screen

    I use a windows XP64 based machine with a quad core I7 920 processor and 12 gigs of RAM with nVidia 260 card. I use CS3. Right now I am having severe crash issues in Premeire CS3. I do HD 1080i video editing with up to 4 layers of green screen. I cur

  • Is it possible to filter the data in a rule group ?

    Hi ! I'm using 3 rule groups in a sales transformation to differentiate commands, bills, and deliveries. I would like to know if it is possible to filter for each rule group the data by BWVORG for example ? Thx in advance . Guillaume

  • Printer Sharing with Windows Desktop

    I wanted to share my HP Printer over the Wi-Fi network. The printer is connected to my HP Pavilion Windows PC. I added the network printer and when i print, it displays error message: "Connection Error: NTSTATUS_BAD_NETWORKNAME" How can i fix this pr

  • Advice on camera purchase

    A co-worker and myself may have the opportunity to do some filming for several projects. I have access to a Sony HDR-FX1 through my full time job but would like to get a P2 camera if these projects take off. I have heard good things about Panasonic A

  • Acrobat X Pro - PDF file to excel

    I would like to know how to take a pdf document(was generated from a report system) and turn that pdf document into a useable excel document.  I am able to view the document as a pdf in acrobat x pro but would like to export it to excel and view it i