Splitting photos without creating multiple events.

Is this possible? I have one event in iPhoto which covers three days. I would like all my photos from this event together but I want each day sectioned off in the same event, not split into multiple events. Highlighting the photos from each day and clicking "split" puts the days all in separate events where as I want them sectioned off, but together in ONE event. I hope I am making myself clear.
My aim is to have it looking something like this:
Event:
Day 1
Day 2
Day 3
NOT
Event: Day 1
Event: Day 2
Event: Day 3

tensocfan
Now with Events as you cannot have Nested Events, but it's perfectly possible with Albums:
File -> New Folder: Name it 3 Day Event
Then three Albums (you can even make them smart Albums: Date is Whatever)
And drag the Albums to the Folder.
Regards
TD

Similar Messages

  • How to save new edits and text to photo without creating a new file

    I am a new user of PSE 7.  I am able to enhance and add text to my photos but can't save the edits without creating a new PSD PSE file in addition to the original unedited photo.  How do I save the phto itself as edited?

    99jon wrote:
    If you really want to make your changes irreversible then use “Save As” and select file type from the dropdown list e.g. jpeg and enter the exact same file name as the original. Click OK to save and OK to overwrite the original.
    While this of course is the answer to the question, the idea of overwriting the original is simply a bad idea. If you do this, you can never get back to your original and start again. That text will always be there.
    I advise the original poster not to do this. Save your edits as a different name.

  • How do you create multiple events (different dates) from one large event?

    I recently downloaded a large number of photos from my iphone to iphoto. All of the photos are now under event 4/9/2011 (the date and times are correct, just all in one event). How do I change/break up photos and add/change event dates? I don't want to scroll up hundreds (half a year) of photos to see photos I took yesterday.

    Select the Event and go Events -> Autosplit
    Regards
    TD

  • Determining Largest and Smallest integers, without creating multiple ints

    I created a program that reads a list of numbers (doubles) terminated by a sentinal value, and outputs the average. The do-while statement with the sentinal value termination uses only one specified integer, changed with the input of each new number. Now without specifying more integers is there a way i can determine the largest and smallest number on the list?
    import java.util.*;
    public class LabThree
        public static void main(String[] args)
            Scanner keyboard = new Scanner(System.in);
            int totaldoubles, max, min;
            double total, nextnum;
            String answer;
            do
             System.out.println();
             System.out.println("Enter a list of nonnegative integers");
                System.out.println("When you are finished with the list, enter a negative number");
                System.out.println();
                System.out.println("I will tell you the largest and smallest integer");
                System.out.println("and give you the average the list");
                totaldoubles = 0 ;
                total = 0;
                nextnum = keyboard.nextDouble();
                while (nextnum >= 0)
                    total = total + nextnum;
                    totaldoubles++;
                    nextnum = keyboard.nextDouble();
                if (totaldoubles > 0)
                    System.out.println("The average is: " + (total/totaldoubles));
                else
                    System.out.println("No scores to average");
                System.out.println();
                System.out.println("Do you want to average another list?");
                System.out.println("Enter Yes or No");
                answer = keyboard.next();
            }while (answer.equalsIgnoreCase("yes"));
    }Message was edited by:
    thecynicle1
    Message was edited by:
    thecynicle1

    ok i tried this:
    import java.util.*;
    public class LabThree
    public static void main(String[] args)
    Scanner keyboard = new Scanner(System.in);
    int totaldoubles;
    double total, nextnum, max, min;
    String answer;
    do
         System.out.println();
         System.out.println("Enter a list of nonnegative integers");
    System.out.println("When you are finished with the list, enter a negative number");
    System.out.println();
    System.out.println("I will tell you the largest and smallest integer");
    System.out.println("and give you the average the list");
    totaldoubles = 0 ;
    total = 0;
    nextnum = keyboard.nextDouble();
    max = nextnum;
    min = nextnum;
    while (nextnum >= 0)
    total = total + nextnum;
    totaldoubles++;
    nextnum = keyboard.nextDouble();
    if (nextnum > max)
    max = nextnum;
    else if (nextnum < min)
    min = nextnum;
    if (totaldoubles > 0)
    System.out.println("The average is: " + (total/totaldoubles));
    System.out.println("The largest number was: " + max);
    else
    System.out.println("No scores to average");
    System.out.println();
    System.out.println("Do you want to average another list?");
    System.out.println("Enter Yes or No");
    answer = keyboard.next();
    }while (answer.equalsIgnoreCase("yes"));
    But now the compiler is saying that the underlined "else" is without an if
    Message was edited by:
    thecynicle1
    Message was edited by:
    thecynicle1
    Message was edited by:
    thecynicle1

  • Help with creating multiple events for a single button

    I have a basic gui that is used to view a query. There is a JTextArea where the infromation from the query displays. Now i also have JTextAFields that correspond to each column from the table that i am querying from. I have an edit button that will take the current query (which i have a reference to) and put in each JTextField the correct information (it re exectutes the query given the id of the current result in the query, and sets the text in each field).
    All this works fine.. Now the text fields have been filled in, and the user can change them accordingly. I set the text of the edit button to say update, and i add an action listener within the current listener for that button.. When the update button is pressed, everything is fine.. However, after that, the listener has changed and i get exceptions everytime i press edit.. Below i have made it so that i create a new action when the edit button (named update that after they press it, it then displays update.. and the insert button changes to insert.. now an insert query is different than an update so i can't just enable only insert or anything like that).
    is there any way to have 1 button that can do different things depending on the context? I can't figure out how to do it..
    here is what i have as far as listeners for my buttons
              ButtonHandler buttonHandler = new ButtonHandler();
             exit.addActionListener(buttonHandler);
             first.addActionListener(buttonHandler);
             prev.addActionListener(buttonHandler);
             next.addActionListener(buttonHandler);
             last.addActionListener(buttonHandler);
              insert.addActionListener(new insertButtonAction());
              delete.addActionListener(new deleteButtonAction());
              update.addActionListener(new editButtonAction());
              rollback.addActionListener(new rollbackButtonAction());
              commit.addActionListener(new commitButtonAction());
              sendQuery.addActionListener(new sendQueryButtonAction());
         class ButtonHandler implements ActionListener {  // this is a Controller class
           public void actionPerformed (ActionEvent e) {
              JButton b = (JButton)e.getSource();
              try {
                 if (b==first) {
                    if (result.first())
                       updateText();
                 else if (b==prev) {
                    if (result.previous())
                       updateText();
                    else
                       prev.setEnabled(false);
                 else if (b==next) {
                    if (result.next())
                          updateText();
                    else
                       next.setEnabled(false);
                  else if (b==last) {
                     if (result.last())
                        updateText();
                  else if (b==exit) {
                     db.close();
                     f.dispose();
                     System.exit(0);
               catch(SQLException ex) {
                     System.out.println("Could not perform operation()\n" +  ex.getMessage());
         private class insertButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   feedback = insertEntry();     
         private class editButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   try {
                        int ID = result.getInt(1);
                        update.setText("update");
                        insert.setText("cancel");
                        delete.setEnabled(false);
                        rollback.setEnabled(false);
                        sendQuery.setEnabled(false);
                        Statement qStatement = conn.createStatement();
                        String qs = "select EMPNO, ENAME, JOB, MGR, HIREDATE, " +
                             "     SAL, COMM, emp.DEPTNO " +
                           "from emp WHERE empno = " + ID;
                      ResultSet rs = qStatement.executeQuery(qs);
                        rs.next();               
                       enoField.setText(rs.getString(1));
                        enameField.setText(rs.getString(2));
                        jobField.setText(rs.getString(3));
                        mgrField.setText(rs.getString(4));
                        hdateField.setText(rs.getString(5));
                        salField.setText(rs.getString(6));
                        commField.setText(rs.getString(7));
                        dnoField.setText(rs.getString(8));
                   } catch (SQLException ex) {
                       area.setText("Could not fetch row because of " + ex.getMessage());
                   update.addActionListener(new updateButtonAction());
                   insert.addActionListener(new cancelButtonAction());
                   /*Although this compiles and works the first time, after i've
                    it no longer works after that */
              class updateButtonAction implements ActionListener {
                   public void actionPerformed( ActionEvent e ) {
                        feedback = updateQuery();
                        area.setText(feedback);
                        resetButtons();
                        clearFields();
                        update.setEnabled(false);
              class cancelButtonAction implements ActionListener {
                   public void actionPerformed( ActionEvent e ) {
                        resetButtons();
                        area.setText("Operation Canceled");
                        clearFields();
                        update.removeActionListener(e);
         private class deleteButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   try {
                        feedback = deleteEntry(result.getInt(1));
                        area.setText(feedback);
                   } catch (SQLException ex) {
                      area.setText("Could not fetch row because of " + ex.getMessage());
         private class rollbackButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   try {
                        Statement rstmt = conn.createStatement();
                        rstmt.executeQuery("rollback");
                        area.setText("Rollback Successfull.");
                   } catch (SQLException ex) {
                        area.setText("Could not rollback.");
         private class commitButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   try {
                        Statement rstmt = conn.createStatement();
                        rstmt.executeQuery("commit");
                   } catch (SQLException ex) {
                        area.setText("Could not commit changes.");
         private class sendQueryButtonAction implements ActionListener {
              public void actionPerformed( ActionEvent e ) {
                   query(db, selectQ);
        void resetButtons(){
             insert.setText("Insert");
             update.setText("Edit");
             delete.setEnabled(true);
             rollback.setEnabled(true);
             sendQuery.setEnabled(true);
       any suggested would be appreciated

    App message delivery is not retried in B2B, rather failed messages are delivered to the IP_IN_QUEUE. Please enable the logging for B2B engine in TRACE 32 mode and run a test to reproduce the behaviour. Post the log here or mail across to my id (in my profile).
    Regards,
    Anuj

  • I use a PC for work and link it to Office 365. I also have an iphone and ipad. How do I synchronise these devices to Outlook without creating multiple copies of calendars?

    I use my PC for work (MS Office and Outlook). I also use Office 365. I also have an iPhone and iPad. I'm having difficulty getting Outlook to synchronise with Apple devices. I keep getting multiple copies of calendars and not being able to see contacts. Is there a process anywhere which describes the best way to manage these devices together? Or should I just give up on the PC and buy a MacBook or Air.

    Excellent. These guides got me as far as installing my preferred language pack, which gets added to the add-ons automatically (assuming the user says yes to the appearing question when Firefox is started).
    However, the GUI does not change unless the user enters "about:config" and changes the locale.
    Is there a way to do this from the command line? I mean, changing the locale settings.
    And preferrably for all users. So even when new users get added and they start Firefox the first time, they see it appearing with the preferred locale and not in English.

  • ICal / Exchange / iOS-Cal sync creates multiple events and multiple problem

    Hi,
    I got an iPod Touch for Xmas, so I've rejigged all my iCal calendars to sync via the Enterprise Exchange server at my works. I have three calendars, one for my work appointments, one for my personal appointments and one for other appointments and events.
    I expected to get some weirdness from previous iCal experience, but I've found an odd set of behaviours.
    Some all-day events become midnight to midnight events on the iPod only.
    Some events became duplicated.
    Many of these duplicated events do not appear on the iPod, only in Exchange and iCal on OSX.
    If I change an event on iOS4 Cal.app, say the free/busy information or a deletion, the event changes as expected on Exchange (as seen via Outlook Web Access etc).
    If I change an event on iCal on OSX, the event duplicates itself on Exchange, but not on the iPod.
    If I delete a duplicate event (in any exchange synced calendar) on iCal on OSX, the event reappears a few minutes later or on refreshing. If I delete a duplicate event Cal.app on iOS, it stays deleted.
    Has anyone else experienced this kind of thing? I've seen some notes about duplications via MobileMe, but I don't have that feature. Is there a different method of referring to Exchange events used in iCal on OSX and Cal.app on iOS?
    Also, when I moved my third calendar to Exchange, it made all the events "Show as Busy". Does anyone know a way of programmatically (e.g. Applescript) setting all those to "Free"? I can't seem to find an event property that matches the value given in "Show As..." when you view the event.

    Jeeze, I'm try to sort this out as well. Some iCal Events (but not all), are duplicating within iCal on the MAC. The Mobileme Calendar and the iPhone Calendar seem okay (no Dups).
    Could this be a simple matter of turning off (unchecking), the calendar boxes for the Calendars "ON MY MAC" and also minimizing that Directory Tree and leaving on and expanded the [email protected] Directory Tree with Calendar Boxes checked ?
    Done that way, MobileMe and the iPhone are being updated.
    Having said that, the obvious conclusion is that any New Event entered into a Calendar within the "ON MY MAC" directory tree is not going to be synced with MobileMe nor the iPhone and is a waste of time.
    Furthermore, Any New Event entered into a calendar on the iPhone will be synced with its coressponding Calendar in MOBILME, and it's Directory tree in iCal on the MAC - But Not the "ON MY MAC" Directory tree - That never gets synced. Am I right or am I going crazy.

  • Repeat every X minutes w/o multiple events

    Is there any way to get an event to repeat faster than 1 day? For example. I want something to repeat every 10 minutes. Is there a way to do this without creating multiple events?

    I'm seeing this behaviour, too. In my case, it happens with a recurring meeting.

  • Many events and photos are missing from my iphoto.  I have time machine and would like to restore without creating duplicates. The issue is although my photos are presently blank time machine/iphoto does see the file so importing them will create duplicat

    For some unknown reason, events and photos in my Iphoto are appearing blank. The photos have a title / placeholder but no picture. I use time machine and have back ups, my goal is to restore the photos without creating duplicates. Unfortunately iphoto sees the blank photos as if the picture exists?  Help

    If you want to use your back up you need to restore then entire Library from Time Machine, and then replace the damaged Library with it.
    Regards
    TD

  • Multiple events per date with only one photo each - Unwanted

    I have the eyefi wireless sd card in my camera and it is setup to transmit my photos into iphoto automatically, which it does. However, the problem arises in that iphoto creates multiple events for the same date each containing only one photo. I would prefer that iphoto create individual events per date and have the multiples of that date's photos within. I thought I had the settings configured to do so as I have preferences set for autosplit events one per day but I still see events such as - July 3, 2008 - July 3, 2008 - July 3, 2008 - each with only one photo inside.
    I am wondering if it is something in iphoto's settings or the way in which eyefi transmits the photos into iphoto.
    Any thoughts?

    I do not have a WiFi connection to my camera so can not test but am just guessing
    I can think of two possibilities
    - 1 - if you are taking the photos with the WiFi connected then each time you snap a photo it may be being sent which would be looked at as a new import and therefore create a new event - to stop this I believe you would have to not have a full time WiFi connection to your camera or somehow set the camera to send batched - not each one - iPhoto will take each batch into and follow the rules for making events for that batch even if you camera is sending many batches of One photo
    - 2 - You have the preference for making batches set to one every two hours and there is a long time between photos - I'm guessing that #1 is more likely
    LN

  • How to create multiple sip trunks between cucm and cisco unified sip proxy

    Dear Expert,
    Is there a way to create multiple sip trunks between CUCM and Cisco Unified SIP Proxy (CUSP)? How to achieve it without creating multiple IP interfaces on the CUSP module.
    CUCM: 8.5.1.10000-9
    CUSP: 8.5.2
    Thank you,
    .wan

    Hello Michael,
    This SIP trunk is part of UCCE solution, which used between CVP, CUSP, and CUCM.
    The requirements:
    1) To have different codecs for different type of calls, as the phones are at few countries
    2) To pass different number of digits from CUSP to CUCM for different call treatments
    .wan

  • Create ical events using perl

    Hey you guys, I am trying to create several events in ical. I have a textfile containing dates body and titel. Which I do not know is how to create an adequate ics files which i can then import into ical. Is there a parser which I can change to my needs to create multiple events? For example
    Titel
    March 25, 2008 12:15 AM
    Body
    Titel
    March 26, 2008 12:15 AM
    Body
    and so on. So now i want to create an event for each one of them. Anyone an idea on how to approach this. Thanks

    If you know how to make an ics file in Perl, I would go ahead with that, as learning Applescript will take a while - it is simple but frustratingly inconsistent. The UID is not an issue. If iCal finds one in an ics file you import it will ignore it and substitute a new one, and if it doesn't find one it will simply make one.
    The Macscripter site has links to many Applescript tutorials.
    AK

  • Is there a way to create a multiple event screen saver from iPhoto events?

    Is there a way to create a multiple event screen saver from photos in iphoto?  I can create a single event screen saver, but don't know if it is possible to create a screen saver with more than one event.

    Drag the events you want into an album and have the screen saver run from the album.

  • How do I split a single event with many clips into multiples events, one event per date?

    I archived the video from my AVCHD camera into a Final Cut video archive. Later I imported this into iMovie. All the clips from this archive (spanning several months) are dumped into a single event. If I recall, older versions of iMovie would import video into separate events for each day. Then I would go through and give each event a meaningful name (e.g., "Mary's Birthday").
    This is what I would like. Is there a way to split this very long event into multiple events, one for each day that is present in the event?

    Not automatically but with imovie 10 you can create new events with any name you like then move clips into them from other events  (Just like FCP 10.1).   See:
    http://help.apple.com/imovie/mac/10.0/#mov1d890f00b
    You can also choose to display clips in an event grouped by date.
    Geoff

  • Photos are being added to my iPad, without choosing any events in iPhoto or having them sync with iCloud

    Photos are being added to my iPad, without choosing any events in iPhoto or having them sync with iCloud
    I just upgraded to IOS6, and now my ipad is full of pictures I did not choose to sync.
    I cannot delete them without deleting them from all sources.
    Actually, the message is when I go to hit EDIT, select a picture, and then choose DELETE: "This photo is used in an album. Do you want to delete it everywhere? Delete Everywhere"
    Does that mean "Everywhere" on my iPad, or everywhere including whatever place on my computer it found the photos to begin with?
    PLEASE HELP
    Ps:
    I've already done this:
    To delete photos from your device
    In iTunes, select the device icon in the Devices list on the left. Click the Photos tab in the resulting window.
    Choose "Sync photos from."
    On a Mac, choose iPhoto or Aperture from the pop-up menu.
    On a Windows PC, choose Photoshop Album or Photoshop Elements from the pop-up menu.
    Choose "Selected albums" and deselect the albums or collections you want to delete.
    Click Apply.

    You can still sync the photos and keep the photos that are already on the device. You have to include all of the albums or events in the pictures folder that you sync from. If you are using iPhoto, select that in the Sync Photos from drop down menu and then select all of the albums or events that you want to sync. Make sure to check Selected Albums, events, faces and automatically include (no events). Using that option will allow you to choose exactly which albums and events to sync.
    You have to remember that all photos must be included in every sync so you cannot sync photos from iPhoto today and then try to sync photos from another folder tomorrow, or you will erase all of the photos that were synced from iPhoto. You need to maintain one main Photos syncing folder for the photos that you want to transfer to the iPad. You can have subfolders within that one main folder and you can selectively sync those subfolders. You just have to place all of the photos that you want to sync into one main iPad syncing photos folder.
    There are WiFi transfer apps that allow you to transfer photos to the iPad without having to sync with iTunes. I use this one. This app (and others like it) will allow you to use multiple computers to transfer photos.
    Wireless Transfer App Easily send photos to iPhone/iPad ...

Maybe you are looking for

  • K7N2 Delta ILSR Takes forever to boot.

    Specs: K7N2 Delta ILSR Mobo Athlon xp 2500 Kingston Hyper X 2700 DDR 512mb (its on the list) Geforce 2MX 32mb AGP videocard (I dont play games) 3 Com 56k Win Modem IBM GXP120 60 gig ata133 Hard drive Pine 12X DVD drive LG 24x10x48 CD Burner Antec 300

  • DBMS_DATAPUMP how to fetch completed_rows

    Hi, we are using data pump api to copy partition data to dump file. we need to fetch completed_rows (row count) for partition status monitoring. record count get generated in log file but we need to parse it again. i refer below url [http://download.

  • "Import Error" with Word Document (google doc)

    I tried to open a word document that I created using Google's online document program and I keep getting 'import error' when I try to open with Pages. I tried it several times on several different .doc documents created with the Google program and ge

  • Can't open Nikon D600 Raw Files

    I have installed my second copy of PS CS6 on my laptop. Update says everything is up to date, but the D600 files won't open. (They do on my desktop.) I tried a manual uplaod of ACR 7.3 (couldn't see 7.4 which is out there.) Installation failed. What

  • Music Folders no longer kept in Albums!

    Hi, since updating my Itunes, the library which Itunes uses automatically resets my albums so that each song on a compilation now is stored per name of artist instead of original album, can someone advise what has happened please?:)