How come when I send a picture with iPhoto email it always send the same picture event when I choose a different picture until I log out from iPhoto

how come when I send a picture with iPhoto email it always send the same picture event when I choose a different picture until I log out from iPhoto

Why? Because something is wrong.
As a Test:
Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
Import a few pics into this new, blank library. Is the Problem repeated there?

Similar Messages

  • When i connect my ipad with my pc i always get the answer that the PC does not identify my pad

    when i connect my ipad with my pc i always get the answer that the PC does not identify my pad

    Hi there,
    You may like to try the steps outlined in the site I have linked to below. The site was not made for your issue, but should help nonetheless.
    iPad Assistant iTunes
    Regards,
    Nathan

  • Dealing with two email accounts that use the same SMTP (outgoing) server

    Folks:
    re:   mail.app  5.2 (MacOS 10.7.4) with respect to POP accounts only
    I've read this thread multiple times, spent many hours experimenting, and my web searches haven't come up with any more useful help.
    How do you persuade mail.app to accept settings for two similar, but distinct email accounts that use the same SMTP (outgoing) server?   Say, the accounts are "blue.example.com" and "[email protected]". These have different user names and passwords.   The SMTP server is "smtp.example.com". 
    I think this is the appearance of success: the SMTP Server List (as seen in edit-the SMTP-Server-List mode) shows:
    Server Name                   In Use By Account
        smtp.example.com      [email protected], [email protected]
    (Description column omitted for brevity.  And of course, mail.app doesn't show the little envelope icons.)
    But I cannot reliably achieve this result.   When I select the SMTP server from the list for the second account --as suggested in the above-referenced thread--- I see the credentials (user name and password) for the first.  Should I overwrite them?  No, I don't think so -- I think that will break the first account.   I feel mail.app should present me with empty credentials boxes instead.  Maybe this happens -- sometimes.  But I can't see how to make it happen.  Am I simply overlooking something?
    A slightly different way of asking about this issue:   Suppose  I manage to do a proper setup for the two accounts and they work.  Then I change the password for "[email protected]" on the server. What is a reliable way of reaching the SMTP credentials for that account to make the edit?  Same question for "[email protected]"?    Even when I successfully attach two accounts to one SMTP server, I seem only able to reach the first listed one to make changes. (In this case, "blue.example.com").
    It is possible I'm missing something incredibly obvious...    I know the credentials for each account are distinct, but maybe mail.app copies them from the POP (incoming) settings.   Nah, that can't be, can it?   Or what?
    Maybe I'm seeing bizarre things due to scrambled mail.app preferences.  I've seen it before on other apps: delete the current preference file, get an auto-generated fresh one, and sanity returns. But with mail.app, with the prospect of losing years of emails --yeah, I've done it--  I'm extremely reluctant to mess around.
    Suggestions, please.
    TIA
    Message was edited by: Hen3ry  to clean up the table a little and add a parenthetical explanation.

    OK, I'm convinced.   The mail.app UI is BROKEN -- in my primary user account.  Such that it cannot reliably select an outgoing server for editing.
    I created a new user account and installed some relevant example accounts in mail.app in that account.  No problem. Well, a bit obscure, but still fully logical and reliable selection of individual SMTP accounts for editing.
    For the sake of clarity, I think it is best to mark this "answered" and repost, focusing on the symptoms and asking how one might go about repairing the problem.  So I'll do that.

  • My program always displays the same image, even when I change th image file

    I'm making a program that chooses an image file from a dialog, resize it and copy it into a folder. When the image is needed to be displayed, the image file is read and a JLabel displays it on screen.
    When I upload the first image, everything works fine. The problem appears when I upload another picture: the displayed image is still the first image, even when the old file doesn't exist anymore (because it has been overwritten). It looks like the image has been "cached", and no more image are loaded after the first one.
    This function takes the image picture chosen by the user, resizes it, and copy it into the pictures folder:
        private void changeProfilePicture() {
            JFileChooser jFileChooser = new JFileChooser();
            jFileChooser.setMultiSelectionEnabled(false);
            jFileChooser.setFileFilter(new ImageFileFilter());
            int result = jFileChooser.showOpenDialog(sdbFrame);
            if (JFileChooser.APPROVE_OPTION == result) {
                try {
                    //upload picture
                    File file = jFileChooser.getSelectedFile();
                    InputStream is = new BufferedInputStream(new FileInputStream(file));
                    //resize image and save
                    BufferedImage image = ImageIO.read(is);
                    BufferedImage resizedImage = resizeImage(image, 96, 96);
                    String newFileName = sdbDisplayPanel.getId() + ".png";
                    String picFolderLocation = db.getDatabaseLocation() + "/" +
                            PROFILE_PICTURE_FOLDER;
                    java.io.File dbPicFolder = new File(picFolderLocation);
                    if(!dbPicFolder.exists())  {
                        dbPicFolder.mkdir();
                    String newFilePath = picFolderLocation + "/" + newFileName;
                    File newFile = new File(newFilePath);
                    FileOutputStream fos = new FileOutputStream (newFilePath);
                    DataOutputStream dos = new DataOutputStream (fos);
                    ImageIO.write(resizedImage, "png", dos);
                    dos.close();
                    fos.close();
                    //set picture
                    sdbDisplayPanel.setImagePath(newFilePath);
                } catch (IOException ex) {
                    System.err.println("Could'nt print picture");
                }This other class actually displays the image file in a JLabel:
        public void setImagePath(String imagePath) {
            count++;
            speaker.setImagePath(imagePath);
            this.imagePath = imagePath;
            if(imagePath != null)   {
                //use uploaded picture
                try {
                    File tempFile = new File(imagePath);
                    System.out.println(tempFile.length());
                    java.net.URL imgURL = tempFile.toURI().toURL();
                    ImageIcon icon = new ImageIcon(imgURL);
                    pictureLbl.setIcon(icon);
                    // Read from a file
                } catch (IOException ex) {
                    Logger.getLogger(SDBEventClass.class.getName()).log(Level.SEVERE, null, ex);
            else    {
                //use default picture
                URL imgURL = this.getClass().getResource("/edu/usal/dia/adilo/images/noProfile.jpg");
                ImageIcon icon = new ImageIcon(imgURL, "Profile picture");
                pictureLbl.setIcon(icon);
        }

    When you flush() the image, you don't need to construct a new ImageIcon each time, a simple repaint() will suffice.
    Run this example after changing the URL to an image you can edit and update while the program is running.import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.*;
    public class FlushImage {
       Image image;
       JLabel label;
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new FlushImage().makeUI();
       public void makeUI() {
          try {
             ImageIcon icon = new ImageIcon(new URL("file:///e:/java/dot.png"));
             image = icon.getImage();
             label = new JLabel(icon);
             JButton button = new JButton("Click");
             button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                   image.flush();
                   label.repaint();
             JFrame frame = new JFrame("");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.add(label, BorderLayout.NORTH);
             frame.add(button, BorderLayout.SOUTH);
             frame.pack();
             frame.setLocationRelativeTo(null);
             frame.setVisible(true);
          } catch (MalformedURLException ex) {
             ex.printStackTrace();
    }db

  • My iPad and iPhone have the same syncing calendar but my Windows 7 PC with iCloud does not sync/show the same calendar...please help!

    My iPad and iPhone have the same syncing calendar but my Windows 7 PC with iCloud does not sync/show the same calendar...please help!

    iCloud will not sycn a calendar from an external source.  In order to use iCloud to sync it, you would have to move it to iCloud and stop using Google.  I know how to do that on a Mac, but I'm not sure how to do it on a PC.  If you're using Outlook, I suspect you export it as an .ics file to your desktop, then import it to the iCloud account in Outlook.  I'm sure you could use Google to find the specific steps.
    However, there's really no reason not to just use Google to sync your calendar across your devices.  Instead, just continue to use Goole calendar on all your devices and they should stay in sync.  Take a look at this video: http://www.youtube.com/watch?v=C0Jj0KFgbYI.

  • When i take a picture with my iphone and then forward the picture in an email (regardless of picture size) it will not send - any thoughts????? Thanks.

    When I take a picture with my iPhone and then forward the picture to an emaila ddress (regardless of picture size) it will not send the email with the pciture enclosed - any thoughts on how to fix ?????
    Thanks -

    The collum to the right listed similar problems.  The solution appears to be that under smtp outgoing settings the user name and password are listed as optional.  I have not plugged in the information and it seems to be working.  However from my office it always allowed the relaying.  The true test will be when I try to respond later from the road.
    Thank you for your help.

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • When i take a picture with flash in a dark place , the photo appears with a blue line . how can i default this ?

    when i take a picture with flash in a dark place , the photo appears with a blue line . how can i default this ? is this normal ???

    You probably have a filter set for the normal camera mode but not the square.
    To fix, in Photo mode, touch the filter icon (three circles) and select None for the filter.

  • When viewing the weather default app with multiple cities, how come there isn't a one click shortcut to go back to the first city?

    When viewing the weather default app with multiple cities, how come there isn't a one click shortcut to go back to the first city?

    3.2 you can make multiple clocks, each clock can have a different alarm.

  • When I try to update Firefox it repeatedly says Firefox must be closed to proceed with install. I even get the same message when I try to uninstall the existing version of firefox. How do I close Firefox???

    When I try to update Firefox it repeatedly says Firefox must be closed to proceed with install even tho Firefox is closed. I get the same message when I try to uninstall the existing version of Firefox. How do I close Firefox??? The same thing happens when I try to update other programs. When a program is off what else do I have to do to turn it off??

    If you get an error message that you do not have sufficient permissions or have other problems with updating to update then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • How come querystring variables don't work with Flash Slide Presentations

    How come querystring variables don't work with Flash Slide
    Presentations
    When I create a regular new Flash FLA and publish it I can
    add a querystring to the file name in the object tag and get that
    value back in the flash move like this:
    myflashfile.swf?myname=andrew
    But when I try the same thing using a new Flash Slide
    Presentation with screen, it doesn't work.
    Is there something I'm missing that I'm not aware of or does
    the Flash Slide Presentation not support the use of querystrings?
    I have tried this using a mix of PC and Mac with MX2004 Pro
    and Flash 8 Pro.
    Any reference links or ideas are much appreciated.
    Thanks,
    Andrew

    Good info found here:
    http://flashmx2004.com/forums/index.php?showtopic=971&hl=query

  • HT204380 My iPhone and iPad are set up under the same account and when I try to FaceTime with the iPad or vice versa it says face time is busy and will not connect, how do I fix this

    My iPhone and iPad are set up under the same account and when I try to FaceTime with the iPad or vice versa it says face time is busy and will not connect, how do I fix this

    I can call my ipad with my iphone alll the time.  That's how I check up on my kids at home when I"m at work. You just set up to your iphone's facetime setting with your phone number and set up your ipad's facetime settings with your apple id (in this case it's your email)

  • How come iMac can see Pmy iPhone with iPhoto but cannot syncronize with iTunes? Maybe need an update version? As a matter of fact iTunes version on iMac is a 10.4 and in iPhone I How come iget a 10.6: the iMac is brand new sunce I used a pc before. Thanks

    How come iMac can see my iPhone with iPhoto but cannot syncronize it with iTunes? Maybe need an update version? As a matter of fact iTunes version on iMac is a 10.4 and in iPhone I get a 10.6: the iMac is brand new since I just come from a pc. Thanks

    Hi ...
    see Pmy iPhone with iPhoto but cannot recognnized with iTunes?
    Try this support article > iOS: Device not recognized in iTunes for Mac OS X

  • When I get ready to burn my dvds they tend to be blurred. Even with pictures they do the same thing. When I preview them they blur while playing. But when I stop the video it becomes crystal clear.

    When I get ready to burn my dvds they tend to be blurred. Even with pictures they do the same thing. When I preview them they blur while playing. But when I stop the video it becomes crystal clear.

    Lamontsplace
    Thanks for asking for clarification. Appreciated. I did not see you post 8 until after I posted my post 9.
    Important that we define the issue as being related to just preview or to preview and export.
    Project Preset....
    When you start a new project, a project preset (project settings) need to be set by you or the project. The program
    is designed to do that based on the properties of the first video file that you drag to the Timeline. Sometimes the program
    does it right, sometimes not. If not, then you set the project preset manually assuring that the description of the project preset
    matches your video properties for at least frame size, frame rate, etc. A major function of the project preset is to direct
    the program to give you the correct space in the Edit area monitor for editing. If you select a project preset which includes
    1920 x 1080 in its description, then the space in the Edit area monitor will reflect that 16:9 format.
    If you or the program have set the correct project preset, then, when you drag your video to the Timeline for the first time, there
    will be no colored line over its content. That means that you are getting the best possible preview in the monitor. Once you
    edit that video, you will get an orange line over it. That is the program telling you that you no longer have the best possible preview
    and to get it you Timeline render using the Render button above the Timeline. When that Timeline rendering is complete, the orange
    line turns to green. That is the program telling you that you have the best possible preview which will be in effect until you edit the
    file again. Then orange to green again.
    Right now I would prefer to stay with trying to get your photos to an acceptable preview stage. No matter what the project preset,
    these will need Timeline rendering after they are dragged to the Timeline. Several have reported that the use of the DSLR project preset results in sharper images pre and post export. I want to see if any of that can enhance your situation.
    Please review and consider and then let me know if I am going in the right direction for the explanations. I will adjust
    my instructions/suggestions accordingly.
    More later.
    Thanks again for the follow up.
    ATR

  • How to send multiple attachemnt with a Email

    Hello experts,
    I have problem with sending multiple attachement with a Email .
    I have used program BCS_EXAMPLE_5. it is not for multiple attachment.
    Please help me.
    Thank you.

    Hello,
    u can make use of these Function Modules.
    SO_DOCUMENT_SEND_API1
    SO_NEW_DOCUMENT_SEND_API1
    'CONVERT_OTFSPOOLJOB_2_PDF'
    the program which u gave using the method classes
    Thank u,
    santhosh
    Edited by: santhosh kumar on Dec 2, 2008 2:15 PM

Maybe you are looking for

  • How to delete the apps from your iPhone's purchased list in ios 7

    How to delete the apps from your iPhone's purchased list in ios 7

  • Printing a form

    Hi folks, I had an question, related to printing the form using sapscript. I am printing a sapscript form using two printers. The first one is HPLJ4000 : HP Laserjet 4000   and the model is Dell Printer and using this printer the form is printing fin

  • Saved PS3 Edits Not Showing Up In Own Folder

    Currently running LR2.1 & CS3(PS10.0.1) & ACR4.6, Windows XP. Just upgraded to LR 2.1 today and found that when I Edit in Photoshop and then Save the file, Lightroom no longer creates that subfolder with only the Edit.psd file in there. Prior to this

  • Upgrade 11i (11.5.10.2) to R12 (12.1.3)

    Hi all, I am starting to upgrade my EBS from 11.5.10.2 to 12.1.1 then to 12.1.3 on AIX 6.1 Operating System in Test instance. Any advise steps and recommendations. I've check the Doc: Oracle EBS Upgrade Guide Release 11i to 12.1.1 and I am facing bel

  • Unable to link Condition record number with prices maintained in APO

    Hi Guru's, I need to understand how and where can i see the details of a condition record number maintained in KONP table and use this cond rec to fetch the exact details for a material and customer. I am a APO consultant, not SD. My SD teams reply t