Buttons not appearing clearly upon output

I have created menu buttons (with highlight) that in turn link to the relevant movie file.
When outputted to DVD these buttons appear blurry and unclear.
Why are the buttons not appearing in a crisp, clean state when I have outputted them?

Which version of DVD SP are you using? Are you
making these over video menus? What size and color
of fonts/background? They can all play into what is
happening, usually 20pt + sans serif works best, but
the text in DVD SP can often leave things to be
desired from time to time - where are you previewing
the buttons?
Thanks for your reply.
The vesrion Im using is DV Studio Pro 3. The up state color of the buttons are black and over is red. The font size is 13pt Arial Black.
I have outputted the DVD itself, so I view it through TV.
Am I on the right track?
Thanks again.

Similar Messages

  • Text from text module is not appearing in smartform output

    Hi Experts,
    We are using text modules in one of our smartform to print the sender text . The name of this text module is being dynamically determined during the execution and is coming correctly but still the the text inside the text module is not appearing in the output. We checked one more similar form which is working on the similar logic but calling a different text module , there it is working perfectly. I have tried all the possibilties like changing the window size, changing the fonts and other parameters of the text module but still its not appearing . This seems to be something unusual as in both the smartforms(one with text appearing from module and one without the text) the logic is exactly similar for getting the text module name. The name is getting determined in both the cases correctly and the text modules are also maintained in same manner for both these forms but text is appearing on one and not on other.
    Kindly help if any one of you have also faced similar issue.
    Regards

    Hi Priyank,
    There could be various reasons....
    Wrong language for example
    An easy way to prove this is, put the text direct into the smartforms and see, if it pops up immediately.
    If so, you have to really debug this spot and see if the pased name is correct. (Copy paste it in the debugger, to be really sure, there could be a space in fornt or in the end...)
    If that doesn't help, you have to share more details. Your question is not that very specific. You know
    ~Florian

  • ADF Buttons not appearing correctly

    I've tried researching this problem and from what I've found it has said if we are using JDK version 1.4 and headless = true then we shouldn't have this problem. When running our application some of our ADF buttons will appear correctly and others will not.
    When I look in our
    application-deployments/../temp/adf/images/cache/en/
    directory I can see the images of the buttons that appear correctly, but if I navigate to another page with different buttons I would then expect to see those images being creating in that folder but there are not. If anyone has any insight on this problem it would be a big help. Thanks.

    Nothing leaps to mind that affected downloadable fonts in Firefox 34... but there are hundreds of changes in each version so I can't rule it out.
    Just to go back to basics for a moment...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Button not appearing (obvious fix most likely (no errors))

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.*;
    public class ChatClient
      private TextArea output;
      private TextField input;
      private Button sendButton;
      private Button quitButton;
      private JButton button;
      private ImageIcon image;
      private ImageIcon image1;
      private Panel p1;
      private Frame frame;
      private Panel p2;
      public ChatClient()
        output = new TextArea(10,50);
        input = new TextField(50);
        frame = new Frame("Chat Room");
        sendButton = new Button("Send");
        quitButton = new Button("Quit");
        button = new JButton(image);
        image = new ImageIcon("c:/aztecsun.jpg");
        image1 = new ImageIcon("c:/aztecsun.jpg");
        p1 = new Panel();
        p2 = new Panel();
      public void launchFrame()
               button.setContentAreaFilled(false);
               button.setBorderPainted(false);
               button.setFocusPainted(false);
               button.setPressedIcon(image1);
               p1.add(sendButton);
               p1.add(quitButton);
               p2.add(button);
             // Use the Border Layout for the frame
             frame.setLayout(new BorderLayout());
             frame.add(output, BorderLayout.WEST);
             frame.add(input, BorderLayout.SOUTH);
             frame.add(p1, BorderLayout.EAST);
             frame.add(p2, BorderLayout.CENTER);
             // Add the button panel to the center
             frame.pack();
             frame.setVisible(true);
             //frame.addWindowListener(this);
             sendButton.addActionListener(new sendHandler());
             input.addActionListener(new inputHandler());
             button.addActionListener(new azteca());
             quitButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent ae)
                       System.exit(0);
             frame.addWindowListener(new WindowAdapter()
                  public void windowClosing(WindowEvent we)
                       System.exit(0);
      /*     class windowTerminate implements WindowListener
                public void windowClosing(WindowEvent we)
                     System.exit(0);
                public void windowDeactivated(WindowEvent we)
                public void windowIconified(WindowEvent we)
                public void windowDeiconified(WindowEvent we)
                public void windowActivated(WindowEvent we)
                public void windowOpened(WindowEvent we)
                public void windowClosed(WindowEvent we)
       class azteca implements ActionListener
              public void actionPerformed(ActionEvent ae)
                   if(ae.getSource() == button)
                        String text = input.getText();
                        output.setText(output.getText() + text + "/n");
                        input.setText("");
           public void copyText()
                String text = input.getText();
                output.setText(output.getText() + text + "\n");
                input.setText("");
           class sendHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
           class inputHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
      public static void main(String[] args)
        ChatClient c = new ChatClient();
        c.launchFrame();
    }I'm practicing with events/buttons with icons and the button is not appearing...
    Yes the image is in the correct directory... (for the obvious fix type of people)...
    But yeah...
    Thanks!

    I know the fix but I do not know how to do it... I haven't added the image button correctly therefore it is not appearing, but I lack the necessary skills to fix the problem.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.*;
    public class ChatClient
      private JTextArea output;
      private JTextField input;
      private JButton sendButton;
      private JButton quitButton;
      private JButton button;
      private ImageIcon image;
      private ImageIcon image1;
      private JPanel p1;
      private JFrame frame;
      private JPanel p2;
      public ChatClient()
        output = new JTextArea(10,50);
        input = new JTextField(50);
        frame = new JFrame("Chat Room");
        sendButton = new JButton("Send");
        quitButton = new JButton("Quit");
        button = new JButton(image);
        image = new ImageIcon("c:/aztecsun.jpg");
        image1 = new ImageIcon("c:/aztecsun.jpg");
        p1 = new JPanel();
        p2 = new JPanel();
      public void launchFrame()
               button.setContentAreaFilled(false);
               button.setBorderPainted(false);
               button.setFocusPainted(false);
               button.setPressedIcon(image1);
               p1.add(sendButton);
               p1.add(quitButton);
               p2.add(button);
             // Use the Border Layout for the frame
             frame.setLayout(new BorderLayout());
             frame.add(output, BorderLayout.WEST);
             frame.add(input, BorderLayout.SOUTH);
             frame.add(p1, BorderLayout.EAST);
             frame.add(p2, BorderLayout.CENTER);
             // Add the button panel to the center
             frame.pack();
             frame.setVisible(true);
             //frame.addWindowListener(this);
             sendButton.addActionListener(new sendHandler());
             input.addActionListener(new inputHandler());
             button.addActionListener(new azteca());
             quitButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent ae)
                       System.exit(0);
             frame.addWindowListener(new WindowAdapter()
                  public void windowClosing(WindowEvent we)
                       System.exit(0);
      /*     class windowTerminate implements WindowListener
                public void windowClosing(WindowEvent we)
                     System.exit(0);
                public void windowDeactivated(WindowEvent we)
                public void windowIconified(WindowEvent we)
                public void windowDeiconified(WindowEvent we)
                public void windowActivated(WindowEvent we)
                public void windowOpened(WindowEvent we)
                public void windowClosed(WindowEvent we)
       class azteca implements ActionListener
              public void actionPerformed(ActionEvent ae)
                   if(ae.getSource() == button)
                        String text = input.getText();
                        output.setText(output.getText() + text + "/n");
                        input.setText("");
           public void copyText()
                String text = input.getText();
                output.setText(output.getText() + text + "\n");
                input.setText("");
           class sendHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
           class inputHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
      public static void main(String[] args)
        ChatClient c = new ChatClient();
        c.launchFrame();
    }Edited by: Trizi on Mar 25, 2008 11:52 AM

  • FaceTime buttons not appearing on iPad mini

    sometimes the facetime time buttons do not appear so I cannot end a call or reverse camera. How do you fix this

    Try to reset your network settings (make note of the current settings to revert back to)
    Settings>General>Reset>Reset Network Settings
    Afterwards, restore your settings manually and reconfigure your FaceTime and iMessage settings as well as all other network related settings.
    There seems to some issues with iMessage/FaceTime when moving between timezones and setting the date/time manually to your specific area should usually clear it up (from what I've read). That being said (and if you've already tried the date/time trick), try to reset your network settings.

  • Buttons not  appearing (setVisible used)

    I have four buttons.
    This is what i want:
    1)At the begining run=debug=visible
    next=exit2=not visible
    2)When i click debug run=debug=invisible
    next=exit2=visible
    But it's not doing (2)correctly.
    instead it does debug run=debug=invisible
    next and exit2 do not appear.
    Any idea why?
    Here is the code:
    public class PC extends JApplet
    { public void init()
      { Executionionhandler a=new Executionionhandler();
        run=new JButton("Run");
        run.setEnabled(false);
        run.setMinimumSize(new Dimension(110,40));
        run.setPreferredSize(new Dimension(110,40));
        run.setMaximumSize(new Dimension(110,40));
        run.addActionListener(a);
        Debughandler b=new Debughandler();
        debug=new JButton("Debug");
        debug.setMinimumSize(new Dimension(100,40));
        debug.setPreferredSize(new Dimension(100,40));
        debug.setMaximumSize(new Dimension(100,40));
        debug.addActionListener(b);
        Right2=new JPanel();
        Right2.setBackground(Color.cyan);
        Right2.setMinimumSize(new Dimension(395,40));
        Right2.setPreferredSize(new Dimension(395,40));
        Right2.setMaximumSize(new Dimension(395,40));
        Right2.setLayout(new BoxLayout(Right2,BoxLayout.X_AXIS));
        Right2.add(run);
        Right2.add(debug);
        Nexthandler Ne=new Nexthandler();
        next=new JButton("NEXT");
        next.setVisible(false);
        next.addActionListener(Ne);
        Exithandler2 EX2=new Exithandler2();
        exit2=new JButton("EXIT DEBUG");
        exit2.setVisible(false);
        exit2.addActionListener(EX2);
        Right3=new JPanel();
        Right3.setBackground(Color.cyan);
        Right3.setMinimumSize(new Dimension(210,40));
        Right3.setPreferredSize(new Dimension(210,40));
        Right3.setMaximumSize(new Dimension(210,40));
        Right3.setLayout(new FlowLayout());
        Right3.add(next);
        Right3.add(exit2);
      private class Debughandler implements ActionListener
      { public void actionPerformed(ActionEvent event)
        { next.setVisible(true);
          exit2.setVisible(true);
          run.setVisible(false);
          debug.setVisible(false);
          boolean check2=false;
          for(int i=0;i<MemorySize&& check2==false ;i++)
          { if(MemoryContent.getText().length()>0)
    { start2=i;
    check2=true;
    private class Exithandler2 implements ActionListener
    { public void actionPerformed(ActionEvent event)
    { next.setVisible(false);
    exit2.setVisible(false);
    run.setVisible(true);
    debug.setVisible(true);

    Here they are
    import javax.swing.*;
    //import javax.swing.table.AbstractTableModel;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    //import javax.swing.JTable;
    //import javax.swing.table.TableColumn;
    //import javax.swing.DefaultCellEditor;
    //import javax.swing.table.TableCellRenderer;
    //import javax.swing.table.DefaultTableCellRenderer;
    //import javax.swing.JScrollPane;
    //import javax.swing.JComboBox;
    //import javax.swing.JFrame;
    //import javax.swing.SwingUtilities;
    //import javax.swing.JOptionPane;
    public class PC extends JApplet
    { private int MemorySize=100,km,Limit,copy92,m,start1,start2;
      private boolean Stop=false;
      private JTextField MemoryContent[];
      private JLabel MemoryAddress[],MemoryAdd1,MemoryAdd2,calculator1,calculator2;
      private JPanel Memory1,Memory2,Memory3,Memory,Right,Right1,Right2,
              Right3,mainpane;
      private JScrollPane scrollPane1;
      private JButton load,save,clear,exit,run,debug,next,exit2;
      private File fileName;
      public void init()
      { Executionionhandler a=new Executionionhandler();
        run=new JButton("Run");
        run.setEnabled(false);
        run.setMinimumSize(new Dimension(110,40));
        run.setPreferredSize(new Dimension(110,40));
        run.setMaximumSize(new Dimension(110,40));
        run.addActionListener(a);
        Debughandler b=new Debughandler();
        debug=new JButton("Debug");
        debug.setMinimumSize(new Dimension(100,40));
        debug.setPreferredSize(new Dimension(100,40));
        debug.setMaximumSize(new Dimension(100,40));
        debug.addActionListener(b);
        Right2=new JPanel();
        Right2.setBackground(Color.cyan);
        Right2.setMinimumSize(new Dimension(395,40));
        Right2.setPreferredSize(new Dimension(395,40));
        Right2.setMaximumSize(new Dimension(395,40));
        Right2.setLayout(new BoxLayout(Right2,BoxLayout.X_AXIS));
        Right2.add(run);
        Right2.add(debug);
        Nexthandler Ne=new Nexthandler();
        next=new JButton("NEXT");
        next.setVisible(false);
        next.addActionListener(Ne);
        Exithandler2 EX2=new Exithandler2();
        exit2=new JButton("EXIT DEBUG");
        exit2.setVisible(false);
        exit2.addActionListener(EX2);
        Right3=new JPanel();
        Right3.setBackground(Color.cyan);
        Right3.setMinimumSize(new Dimension(210,40));
        Right3.setPreferredSize(new Dimension(210,40));
        Right3.setMaximumSize(new Dimension(210,40));
        Right3.setLayout(new FlowLayout());
        Right3.add(next);
        Right3.add(exit2);
        private class Debughandler implements ActionListener
      { public void actionPerformed(ActionEvent event)
        { next.setVisible(true);
          exit2.setVisible(true);
          run.setVisible(false);
          debug.setVisible(false);
          boolean check2=false;
          for(int i=0;i<MemorySize&& check2==false ;i++)
          { if(MemoryContent.getText().length()>0)
    { start2=i;
    check2=true;
    private class Exithandler2 implements ActionListener
    { public void actionPerformed(ActionEvent event)
    { next.setVisible(false);
    exit2.setVisible(false);
    run.setVisible(true);
    debug.setVisible(true);

  • Safari 5.1.7 local storage not always clearing upon reset

    There are several threads through out this forum regarding cookies being accepted regardless of settings, but much of those seem to be fixed by one of the recent security updates (seperate from an actual Safari update), including fixed for me. But, have noticed that "local storage" items do not always clear out upon a reset of safari (all boxes checked). In fact, sometimes, it takes two or three resets to completely clear them out.  I have verified this behavior on several mac's running SL each yeilding the same.  I just wondered if anyone else has seen this, or has found a solution (or if this is expected behavoiur). Does this indicate a security threat within the browser?  I have used the feedback to Apple to report this.
    I did find this explanation, however:
    https://developer.apple.com/library/safari/#documentation/iphone/conceptual/safa rijsdatabaseguide/Name-ValueStorage/Name-ValueStorage.html

    BDAqua,
    Nope. It's very erratic. For example, just now I cycled several times between the inbox and the smart mailbox and even closed and re-opened. The inbox showed messages. Then I quit mail and re-opened, the inbox was empty. It took a couple more cycles of quit and re-open to get an inbox display. But as soon as I got it back on, and then closed or changed mailboxes, it disappeared when I went back to the inbox.
    Hellofa way to run a railroad.
    And just for reference, when I first had this issue last week under 10.6.8, I read several posts on this forum wherein other users had problems with the inbox display. Other than the smart mailbox "fix", I never did find a definitive solution or explanation as to why it is occuring.
    John

  • Radio Buttons Not Appearing in Quiz

    I created a quiz in Captivate 5.5 then upgraded to Captivate 6.  When I run the quiz locally, the radio buttons appear next to the possible answers and everything works fine.  When I run the quiz in our LMS, the radio buttons do not appear.  Anyone else having this issue or have any insight?

    Hi Anjaneai,
    For some clarification, we are loading the Captivate 6 quiz swf into another swf.  When we play the quiz swf alone, the radio buttons appear.  However when we play the quiz swf within the other swf, the radio buttons disappear.  To reiternate, we loaded Captivate 5.5 quiz swfs into another swf and the buttons appeared.  Do you what the difference between the Captivate versions could be or have any insight?
    We've already looked into some of your suggestions (the Flash player is not the issue) and am looking into your other suggestions.  
    Below is the screen shot you requested.
    Thanks again for your assistance.

  • Button not appearing on quiz pass

    Hi All,
    I'm trying to get a button to appear on a quiz when someone passes successfully.  This button will be a link to another .swf file that will pulled into the project in Aggregator.  The link is working fine, but I cannot get the smartshape to appear successfully when the quiz is passed.  I have used the cpInfoPassFail Advanced Action set to greater than 1, visibility is turned off and execute advanced action is set in the Action property box, but still it does not show.  I've working round and round and circles with this all day, trying different advanced actions, visibility on, off... and nothing is working with it.
    If anyone has any suggestions how and why this not working, I'd really appreciate it.  I'm not finding Captivate particularly intuitive at the moment and am seriously considering heading over the Storyline.

    cpInfoPassFail will never be greater than 1; it has only two values: 0 if failed, and 1 if passed. It is a boolean variable.
    When looking at your action: I thought you wanted to open the URL using the shape button, but you put the command Open immediately after showing the shape? That part should be triggered by the shape button. I hope you configured it as a button?
    http://lilybiri.posterous.com/why-i-like-shape-buttons-captivate-6
    Have a look at this blog post, it has a link to a list explaining all system variables.
    http://lilybiri.posterous.com/system-variables-in-captivate-6
    Lilybiri

  • Approve/Reject button not appearing in Email , but present in the notificat

    Hello Friends,
    I am using Po requisition Approval workflow in iProcurement for PR approval.
    One strange thing is happening , that in approval emails Approve/Reject button are not appearing but the same are present in the notification.
    Moreover , some people are getting emails, others are not.
    We have just started setting up the instance for the design prototype , so might be we are missing some setup/steps.
    Please suggest , what steps i am missing. Thanks !!!
    Regards,
    Amit

    Verify that the email preference for the users is not "disabled"
    Have the user login and go to the preferences link at the top.
    OR
    SELECT *
      FROM apps.fnd_user_preferences
    WHERE preference_name = 'MAILTYPE' AND user_name = '&user' Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • Execute button Not appearing in SWI1 Log

    Hi all,
    We are executing a Vendor Workflow i.e is when ever a vendor is created a workflow is triggered and mail is sent for approval.
    There is 2 z tables for agent assignment. It is maintained.
    After creating vendor we can approve it through a mail
    or we can go to Swi1 click the log of that task and inside the log we have a tab Activities.
    in the activities tab we should get buttons Execute,Reject,Create.
    But now we are not getting those buttons inside the log activities tab.
    We verified all the role tables but i dont know wy its not appearing.
    Pls experts help me out with suggestion,
    Awating for ur reply,
    Regards,
    Venkatesh.S

    it looks like your transaction is marked as Easy Web Transaction.
    go to transaction SE93 , enter your transaction and change the radiobutton selection from Easy Web transaction to Professional user transaction and save it.
    run it again, now you can execute from menu->program->execute
    Regards
    Raja

  • HRMS Button not appearing in Work Center

    Hi friend,
    As we have HR module here, we have a requirement of maintaining the Personal number and work center link.
    But in the Transaction code IR01,02,03 HRMS button is not appearing.
    Whether any setting missing especially from HR side anything missing?
    Pls guide me on this.
    Regards,
    krishna

    Hi
    check the config in OIZU transaction, make sure that screen sequence for HR assignment is maintained
    Mneu path:
    PM>>Maintenance Plans, Work Centers, Task Lists and PRTs>Work Centers>Configure Screen Sequence for Work Center
    Regards
    Seenu

  • Delete Button not appearing in cFolders

    Hi All,
    The user is allowed to upload the document in the cFolders. In the screen where the list of files uploaded is displayed, there are buttons like 'Create', 'Copy' etc. But here there is no option to delete the uploaded file.
    Can any one suggest why the 'Delete' Button is not appearing.....
    Thanks in Advance.
    Regards,
    Mary

    Hi ,
    Are you using custom roles?
    Authorization to delete is missing.
    Two ways you could get that :
    1) authorization object CFX_OBJ should have activity 'delete' (06) in your profile
    or else authorization object ACO_SUPER with activity 'Admin' ( not recommended)
    2) Enable  delete authorization via BBP_CFOLDER_BADI method col_authority_change
    regards
    Alok

  • Forward button not appearing in the workflow inbox

    Hi All,
    We have an issue where a user says that the forward button is not appearing in the workflow inbox . This is happening only for one user. Is there an way through which we can add the forward button?
    Regards
    Archana

    Hi Archana,
    If Basis have confirmed that the user has the authorization, then the user should be able to forward tasks.
    Right click on a task in the inbox, it should allow the user to forward the task.
    If the user does not have the authorization, then a message will appear that user does not have authorization to forward tasks.
    Immediately after that take a screen shot of SU53, which will show you why task forwarding is not possible.
    Regards
    Srinivas

  • Push buttons not appearing

    Hello Experts,
    I had made push buttons on my screen through layout editor and set property as invisible (By Checking Invisible checkbox).
    Now, based on some conditions at run time I want those push buttons to appear on screen.
    For this I had written following code:
    if sy-dynnr = 0101.
      loop at screen.
        if screen-name = 'CUNDFILTER'.
          screen-active = 1.
          screen-invisible = 0.
          elseif screen-name = 'CFILTER'.
            screen-active = 1.
            screen-invisible = 0.
            ELSEIF screen-name = 'DSELALL'.
              screen-active = 1.
              screen-invisible = 0.
              elseif screen-name = 'SELECTALL'.
              screen-active = 1.
              screen-invisible = 0.
         endif.
         modify screen.
       endloop.
       endif.
    I had checked in debug mode, above lines are getting executed but push buttons are not appearing on the screen at runtime.
    Please help.

    Hi,
    You have to code your LOOP AT SCREEN in the PBO...
    Kr,
    Manu.

Maybe you are looking for

  • IMessage and FaceTime on Macbook Pro

    I have a macbook pro. Everything is working fine except for my imessage and my facetime. Everytime i try to log into my i message with my apple id, it says cannot log in. please check you network connection and try again. i know my wifi is working, a

  • JSObject not working for Netscape?

    Calling a javascript function from an Applet works just fine in IE but when I try using Netscape it does not call the javascript function and gives me an exception. "netscape.javascript.JSException: JSObject.getWindow() requires mayscript attribute o

  • Show Variable Personalization

    Hi All, I would like to know what is the purpose of "Show Variable Personalization" in the WEB BEx. I am in BI 7. Regards, Federico

  • Problems importing Std Def videos from Canon HV20

    I recently tried to import some standard def footage from my Canon HV20 and ended up with a garbled mess. All the HD video I have imported looks great, but I have a few clips that are SD that I would like to import. I have tried every setting I can a

  • Recovering Photos iPhone 4s

    Devices: I have an iPhone 4s and I'm running on Mountain Lion on my iMac. I'm heart broken. Half of my son's newborn pictures are distorted. I downloaded all of my picutres from my iPhone to my iMac (image capture) and half of the photos are distorte