Flag and new event

Can multiple photos be flagged from different events and saved to a new event at the same time keeping the flagged photos in their original events?

No
a specific photo can only exist in one event
If you duplicated the photos in the source event then flagged the new one (actually either one) you could do taht - you would, of course double the storage used for those photos winch there are now two of each - and any edits, =delete, etc would only operate on the one you did it to leaving the other copy alone (maybe what you intend?)
LN

Similar Messages

  • Flags and the Event Thread

    I was writing code for a game and I realized that the AWT event thread could change the value of a flag while I'm in the process of updating the game state. This can cause a few problems, or it could even leave events not handled because of it. I see code like this all the time as a fix to the threading issues, am I missing something or is it really a solution? I can't post the actual code as it's too long, so I created a simple example:
    import java.awt.event.*;
    import javax.swing.*;
    public class EventTest extends JFrame implements KeyListener, Runnable
         private boolean isKeyDown;
         public EventTest()
              setSize(500, 500);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              setVisible(true);
              addKeyListener(this);
              new Thread(this).start();
         public void keyPressed(KeyEvent event)
              //synchronized(this)
                   isKeyDown = true;
         public void keyReleased(KeyEvent event)
              //synchronized(this)
                   isKeyDown = false;
         public void keyTyped(KeyEvent event) {}
         public void run()
              // game loop
              while(true)
                   //synchronized(this)
                        boolean cache = isKeyDown;
                        System.out.print(isKeyDown); // before
                        System.out.print(' ');
                        /* event handling, game logic, etc. done here
                           do some useless operation to simulate this */
                        long time = System.currentTimeMillis();
                        while(time + 1 > System.currentTimeMillis());
                        System.out.println(isKeyDown); // after
                        if(cache != isKeyDown)
                             System.out.println("PROBLEM!");
                        // render everything to the screen
                   try
                        Thread.sleep(100);
                   } catch(InterruptedException e) {}
         public static void main(String[] args)
              new EventTest();
    }Basically I have a game loop, where I update the game state, handle events, then draw things to the screen. Each time a key is pressed or released, I set the appropriate value to isKeyDown from the AWT event thread. The desirable output is to have the booleans equal to each other so that "false false" or "true true" is printed out on the screen constantly, but once in a while I'll get a "false true" or "true false", which is expected but obviously not wanted.
    So one solution is right there commented out (synchronizing), though most people seem to avoid it. I see everybody using flags like this, so I'm wondering if I'm missing some obvious solution to the problem or if it's really even that big of a deal. I don't see any other fix, but that's why you're all here. ;)
    Thanks.

    Swing related questions should be posted in the Swing forum.
    I converted your simple example to use a Swing Timer instead of a while(true) loop with a Thread.sleep. I experienced no problems as expected since all the code will be executed in the Event Dispatch Thread (EDT).
    Of course using this approach could make the game less responsive if your game logic is extensive and hogs the EDT, but given that you try to invoke your game logic every 100 millisecond I assume it can't be that extensive.
    Anyway here is the code I used as a test:
    import java.awt.event.*;
    import javax.swing.*;
    public class EventTest extends JFrame implements KeyListener, ActionListener
         private boolean isKeyDown;
         public EventTest()
              setSize(500, 500);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              setVisible(true);
              addKeyListener(this);
              new Timer(100, this).start();
         public void keyPressed(KeyEvent event)
              isKeyDown = true;
         public void keyReleased(KeyEvent event)
              isKeyDown = false;
         public void keyTyped(KeyEvent event) {}
         public void actionPerformed(ActionEvent e)
              boolean cache = isKeyDown;
              System.out.print(isKeyDown); // before
              System.out.print(' ');
              /* event handling, game logic, etc. done here
                 do some useless operation to simulate this */
              long time = System.currentTimeMillis();
              while(time + 1 > System.currentTimeMillis());
              System.out.println(isKeyDown); // after
              if(cache != isKeyDown)
                   System.out.println("PROBLEM!");
         public static void main(String[] args)
              new EventTest();
    }

  • My iPhone 4 calendar won't sync to iCloud. If I make a new event on my iCal on my MBP it will sync to iCloud and to my iPhone, but any new events I create on my iPhone will not sync to iCloud. Any potential solutions?

    I have tried numerous things like turning off iCloud on both devices and rebooting them and turning iCal on again, checking the settings, checking what calendars are being used but nothing has worked so far. Any other solutions welcome! Hoping I will not have to resort to restoring my iPhone completely.

    Go to Settings>Mail,Contacts,Calendars>Default Calendar and be sure you have selected an iCloud calendar as your default and not something else like On My iPhone, a Google calendar, etc.  If you haven't, make this change, then add a new event and see if it appears on your calendar on icloud.com now.
    If your settings are correct and new events still aren't appearing on icloud.com, add any missing calendar events from your phone to your calendar on icloud.com.  Once the calendar on icloud.com is up to date, go to Settings>iCloud, turn Calendars to Off, choose Delete from My iPhone when prompted (they will still be in iCloud), then after a minute or so, turn Calendars back to On.  Then add a new event on your phone and see if it appears on your calendar on icloud.com now.

  • Cannot enter new events in ical on imac using 10.7.5

    Should be able to click and new event appears but this in not happening - nothing appears in ical on the imac but on my ipad and iphone there is an new event which is empty - I think I need to re-install the ical but cannot find the instructions to do this in 10.7.5

    Hi! 
    I'm not really sure what you mean. Could you please elaborate/rephrase that? Thank you! 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • How do you print all the photos in your flagged file? I don't want to make these photos into a new event.

    I want to order several photos. I have flagged them and there is no option to select all and order the prints. I don't want to create a new event with these photos, as I want them in their original event files.
    How are multiple photos ordered/exported for printing?

    Go to your Flagged Photos Smrt Album on the Left.
    Command - a will select All
    Then File -> New -> Album
    Regards
    TD

  • How to delete all the events and create new events from scratch?

    I have all my photos separated into albums and I would like these albums to be considered events in iPhoto. The problem is that there are already lots of events in my iPhoto library that are not "real" events. It just so happens they were uploaded at a certain time and during one of my upgrades of iPhoto all these different uploads became different events. Of course, there are some albums I would like to become a single event as well...but I am not sure how to strip all of my photos of events and then add the photos to new events?

    Select all the pics in an Album and Flag them.
    Then go Events Menu -> Create Event from Flagged Photos
    A new Event is created that moves the pics from their existing Event
    Unflag the Photos then move to the next album. Repeat.
    Regards
    TD

  • I've created a new event from flagged photos how do I move it to all events?

    I've created a new event from flagged photos how do I move it to all events?

    What do you see at the top of the window when you Control-click and select Show Event?  Do you get this window?
    Is there any title at the top? This is what I get:
    Are you not seeing this?

  • Create New Event Flagged Photos

    I flag a bunch of photos. Then select the menu item "Create New Event from flagged photos". And nothing happens. Is it not supose to ask me for an event name and then put the flagged photos into that event? Thanks

    It's just supposed to put the pics into a new Event, it doesn't ask for a name.
    Are you sure you don't have an 'Untitled Event'?
    Regards
    TD

  • When I sync my iPod to my MacBook through iTunes new events do not show up and old events are not deleted. I am using Snow Leopard  and not iSync.

    I am using Snow Leopard on a MacBook. I have an iPod touch 3G. I do not use iSync it Mobile Me. When I sync my iPod through iTunes new events on my iPod do not show up on my Mac and old events do not delete. I have read help instructions that include deleting the data on the iPod. The iPod has the correct data and the Mac does not so I have not followed those instructions. I need help as the only reason I bought the Mac was to be able to sync, back up, view and print my calendar. Currently it is useless. If only Apple could have learned from the elegance of the Palm software.

    Start here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • How do I change: when I double click on a day to add a new event it defaults to All Day and Busy

    iCal 5.0.2 (1571) Is there any way to change this? I can't do it in preferences.
    This is a real pain. To make an event for a specific time I have to double click again, uncheck "All Day" and then put in the time for the start of the event. Even then, if I put in the start time, the end time remains at 6:30 PM, so I have to change that too.
    If I really do want an All Day event, why does it sometimes default to Busy, rather than always to Free?
    The old iCal was far superior in this regard; double click once on a day and the add an event dialogue box appears, defaulting to a time close to when you were making the event, and, if my memory serves correct observing the preference I set with respect to default length of the event.
    I'm aware that Command N gets me a new Quick Event, its a bit better in that if the event i enter opens the big "add an event dialogue box", it has defaulted to an hour long event. But, if I click on a day, and then hit Command N, the new event is put in Today, and not the day I had selected. It also defaults to All Day, unless I put in a time for the event in the Quick Event box.  Why would I do that when I know I want to enter info into a number of fields, and doing so is easiest from the big dialogue box. If i don't enter a time in Quick Event, or enter a day, I still have to double click the event that was created by Quick Event to open the big dialogue box, and start fresh entering everything.  So, I find Quick Event's implimentation cumbersome, overall ending up with more keystrokes and clicks to enter the details I normally enter, than the old iCal.
    So, if someone knows how to change the double click behaviour back to the old way, or how to get Quick Event to open the dialogue box on the day i have already selected, any help will be appreciated.
    Also, is there some way to get this feedback to Apple? Support SiteMap doesn't show a link for feedback.
    Thanks
    Ian

    I have sort of the exact same problem. Extremely far away from user friendly
    I have an second issue as well: When I hook off all-day it comes up with an 8 hour event!
    And then if I put in a late start hour it pushes end time to next day due to the 8 hour event suggestion.
    All in all this gives a lot of changes just to enter an event.
    Command N
    I learnt from your input to use this fuction. At least that comes up with a one hour event as default.

  • In contacts there is the possibility to add a new event, as the birthdays, but they do not appear in iCal. Is there any way to make that possible? It is normal to have a person with his birthday, anniversary and others key dates you want to link to him.

    In contacts there is the possibility to add a new event, as the birthdays, but they do not appear in iCal. Is there any way to make that possible? It is normal to have a person with his birthday, anniversary and others key dates you want to link to such person, but the only one shows up is the birthday. How to be able to show all those dates linked to people in the agenda in the iCal?
    Thanks

    Hi,
    I sugggest you try my application, Dates to iCal. It is shareware with a 2 week trial period.
    Dates to iCal 2 is a replacement for Apple's birthday calendar for iCal. It has a range of features to allow the user to choose what, and what not, to sync to iCal from Address Book.
    As well as automatically syncing birthday dates from Address Book, Dates to iCal 2 can sync anniversary and custom dates. It can set up to five alarms for each date in iCal and can also set different alarms for birthdays and anniversaries. It allows the option of only syncing from one Address Book group. This application also allows for the titles of the events sent to iCal to be modified to the user's preference.
    Best wishes
    John M
    As I sell software on my site and ask for donations, the Apple Support Communities Use Agreement requires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Ical not showing new events and older events as well

    Hi There,
    Since (as I recall) last monday, iCal started to work strange. Or, better put in other way: stopped working.
    I have three calendars only (personal, work and "no category), all of them syncing with iCloud. There are two other local calendars too (in "my mac"), but I don't use them and they are unchecked.
    I only use my macbook white and an iphone 3GS, also syncing with iCloud.
    I don't subscribe any external calendar and don't accept any kind of invitation. It is a basic-simple use: I set my appointments (throw the whole year) and want to see / edit them on iphone.
    Finally, I use reminders (on iphone) a lot and share the "personal" calendar with my with (she uses iCloud on her iphone and ipad).
    The problems are basic two (as I could indentify so far):
    1) I can't set new appointments on iCal. Or better: I may set, but cannot see it. For instance, when a double click the Feb 24th to set a appointment, nothing happens, but a "New event" apperars on iCloud, right way. Looks like that iCal is setting the event up, but it just does not show it. Lately, I've discovered that when I go to the week view in iCal, it shows the event, but it just don't appear on month or year views;
    2) There are a bunch of events that appear correctly on iCloud (and iphone) but just don't show up in my iCal.
    I've been trying to find a solution, already followed a couple of step-by-step possible solution (deleted local calendars, took off iClound accoun from iCal, deleted all files on specific folders in my library), but anything work out. It just don't work anymore.
    Scary...
    I have just quit iCal and started using iCloud as my main input way for may events.... Wonder if anyone else is facing something like this and if is there any sollution out there.
    Thanks a lot in advance and sorry for my bad English.

    i have a similar problem. i can't add any new events to my ical. i can do it on ical on icloud but not on the ical on my itouch. i can't edit them either. it tells me the event can not be saved because a calendar has not been chosen. it was working just fine yesterday and now it won't work.
    i'm new to this on line community stuff. i posted my questions but i don't know how i'm supposed to see any answers. i guess it doesn't matter that i even ask you this or reply to you because i don't plan to be able to see any comments to this. oh well. computer stuff is just crap  sometimes. i guess we have to learn to deal with it.
    my paper calendar NEVER gave me any problems. i would just pull out my trusty pen and write down my appointment and wallah! it was done. it wouldn't get erased or deleted or stop working.

  • New events in iCal are entered on my iMac.  These events pass through correctly to my other computers and iPhone.  However, each new event shows up twice on my iPads.  The clutter is distracting.  Anyone have suggestion as to correcting this annoyance?

    New events in iCal are entered on my iMac.  These events pass through correctly to my other computers and iPhone.  However, each new event shows up twice on my iPads.  The clutter is distracting.  Anyone have suggestion as to correcting this annoyance?

    New events in iCal are entered on my iMac.  These events pass through correctly to my other computers and iPhone.  However, each new event shows up twice on my iPads.  The clutter is distracting.  Anyone have suggestion as to correcting this annoyance?

  • Touch ignores new events in ical and iTunes doesn't show new calendars

    Hi
    i just set my Touch (2nd gen 2.1.1) back to the factory settings with a freshly created itunes lib.
    My problem was (and still is) that i couldn't sync new events from my macbook to the touch.
    i also created a new calendar to ical and checked if naming could be the reason. but the new calendar doesn't show up in the info part of itunes. even if i select replace all calendars on my ipod.
    an strange and annoying problem.
    cu assetburned

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable              
    - Try on another computer                    
    Also see
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or                     
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • I am unable to create a new event on my iPhone with IOS 7.0.4. I tap the plus sign, fill in the details, tape Done and ... nothing. Repeatedly. No problem on my iMac or iPad, just with the phone. Help.

    I am unable to create a new event on my iPhone with IOS 7.0.4. I tap the plus sign, fill in the details, tape Done and ... nothing. Repeatedly. No problem on my iMac or iPad, just with the phone. Help.

    Assuming you're creating this event to place in your calendar, and assuming this calendar is shared with your iMac and iPad using iCloud, might the calendar be restricted on your iPhone?
    Check Settings > General > Restrictions

Maybe you are looking for