Need help creating new film roll

I followed all the instruction in the Help section and still can not create a new film roll--it's grayed out and I am unable to click on it. What is it that I am doing wrong? Please help!

Are all the Year-based Smart Albums checked?
Beside the word Library in the Source (or left-hand) is a wee disclosure triangle. Click on it and you’ll see the Year-based Albums. Are they all checked?
Regards
TD

Similar Messages

  • Create New Film Roll feature grayed out

    The "Create New Film Roll" feature is no longer available. It is continuously grayed out. Has anyone experienced this before? And if so, how did you correct the problem?

    YESSSSSS! Making sure that all the year folders were checked seemed to do the trick. Thank you so much for sharing your knowledge

  • "Create New Film Roll" feature in iPhoto

    The "Create New Film Roll" feature is no longer available. It is continuously grayed out. Has anyone experienced this before? And if so, how did you correct the problem?

    You'll be more likely to get a quick and applicable answer if you ask in the iPhoto forums rather than here in the iTunes forum.
    Good luck.

  • Creating new film roll

    I'm trying to create a new film roll by selecting several photos from an existing roll. I read the help directions that says under file to select "create film roll", however this is not allowing me to select this function on the dropdown menu. any suggestions?

    Is there an x beside the word "Library" at the top of the Source Pane? Click the little disclosure triangle so that you can see the year-based smart albums, and make sure that each of those is selected. Then the x will disappear, and you should be able to create a film roll.
    Regards.

  • Creating new film rolls

    Somehow all of the roll divisions were deleted from my iphoto library. I'm going back to try and reestablish them and reorganize my photos, but when I select a group of photos and try to create a new film roll under the file menu, the option is not highlighted. I tried to create a new roll before selecting photos, but the option is still not highlighted. Any ideas about what could be causing this?

    First off: Is the View Menu -> Film Rolls item checked?
    To create Film Rolls you must have the entire Library available. So, all the years under the word Library much be checked, plus you must have at least one pic selected.
    Regards
    TD

  • Need Help creating new user in Active Directory

    I am trying to create a new user in active directory via a java application. I have included the code that I am using. I am able to successfully bind to Active Directory. I have been able to change passwords, and delete users, but I have not been able to create a user.
    ldapHost : "mta101.DOM101.CEL.ACC.AF.MIL"
    domainName: "dc=dom101,dc=cel,dc=acc,dc=af,dc=mil"
    existing account: CN=Brett K. Humpherys,OU=Users,OU=CEL
    I get the following error on the createSubcontext statement:
    javax.naming.directory.InvalidAttributeValueException: [LDAP: error code 21 - 00000057: LdapErr: DSID-0C09098B, comment: Error in attribute conversion operation, data 0, v893 ; remaining name 'CN=test1,OU=Users,OU=CEL'
    I have commented out the password portion and change the ObjectCategory to a 32 and get the same error.
        public GblStatus createAccount7(DbaDb dbConn,
                                        String jsrcName,
                                        String personName,
                                        String username,
                                        String password)
          Hashtable ldapEnv = new Hashtable(11);
          ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
          ldapEnv.put(Context.PROVIDER_URL, "ldap://" + this.ldapHost + ":636");
          ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
          ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
          ldapEnv.put(Context.REFERRAL, "ignore");
          ldapEnv.put(Context.SECURITY_PRINCIPAL,"cn=" + this.adminAcct + ",cn=users," + this.domainName);
          ldapEnv.put(Context.SECURITY_CREDENTIALS, this.adminPwd);
           try
            // Create the initial context
            DirContext ctx = new InitialDirContext(ldapEnv);
            BasicAttributes attrs = new BasicAttributes();
            BasicAttribute ocs = new BasicAttribute("objectclass");
            ocs.add("top");
            ocs.add("person");
            ocs.add("organizationalPerson");
            ocs.add("user");
            attrs.put(ocs);
            BasicAttribute gn = new BasicAttribute("givenName", "test1");
            attrs.put(gn);
            BasicAttribute sn = new BasicAttribute("sn", "");
            attrs.put(sn);
            BasicAttribute cn = new BasicAttribute("cn", "test1");
            attrs.put(cn);
            BasicAttribute uac = new BasicAttribute("userAccountControl", "66048");
            attrs.put(uac);
            BasicAttribute sam = new BasicAttribute("sAMAccountName", "test1");
            attrs.put(sam);
            BasicAttribute disName = new BasicAttribute("displayName", "test1");
            attrs.put(disName);
            BasicAttribute userPrincipalName = new BasicAttribute
                                          ("userPrincipalName", "[email protected]");
            attrs.put(userPrincipalName);
            BasicAttribute instanceType = new BasicAttribute("instanceType", "4");
            attrs.put(instanceType);
            BasicAttribute objectCategory = new BasicAttribute
                      ("objectCategory","CN=User,CN=Schema,CN=Configuration," + domainName);
            attrs.put(objectCategory);
            String newVal = new String("\"password\"");
            byte _bytes[] = newVal.getBytes("Unicode");
    byte bytes[] = new byte[_bytes.length - 2];
    System.arraycopy(_bytes, 2, bytes, 0, _bytes.length - 2);
    BasicAttribute attribute = new BasicAttribute("unicodePwd");
    attribute.add((byte[]) bytes);
    attrs.put(attribute);
    ctx.createSubcontext("CN=test1,OU=Users,OU=CEL", attrs);
    ctx.close();
    catch (NameAlreadyBoundException nex)
    System.out.println("User ID is already in use, please select a different user ID ...");
    catch (Exception ex)
    System.out.println("Failed to create user account... Please verify the user information...");
    ex.printStackTrace();
    return new GblStatus();
    Any help would be much appreciated.

    Hi .,
    me too got up with same problem., can anyone help me.??
    Someone help me to create attributes in AD using LDAP
    package LDAPpack;
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.InitialLdapContext;
    import javax.naming.ldap.LdapContext;
    import java.util.Hashtable;
    class CreateAttrs {
    public static void main(String[] args) {
         Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://10.242.6.166:389/");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL, "CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
                        env.put(Context.SECURITY_CREDENTIALS, "password-1");
              LdapContext ctx =null;
              try {
                   //ctx = new InitialLdapContext(env,null);
                   try {
    ctx = new InitialLdapContext(env,null);
                   catch(NamingException e) {
    System.out.println("Login failed");
    System.exit(0);
    if(ctx!=null){              
    System.out.println("Login Successful");
    byte[] buf = new byte[] {0, 1, 2, 3, 4, 5, 6, 7}; // same data
         // Create a multivalued attribute with 4 String values
         BasicAttribute oc = new BasicAttribute("objectClassNew", "topNew");
         oc.add("personNew");
         oc.add("organizationalPersonNew");
         // Create an attribute with a byte array
         BasicAttribute photo = new BasicAttribute("jpegPhotoNew", buf);
         // Create attribute set
         BasicAttributes attrs = new BasicAttributes(true);
         attrs.put(oc);
         attrs.put(photo);
         Attributes attrs1 = ctx.getAttributes("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
    System.out.println(attrs1);
    Context result = ctx.createSubcontext("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org", attrs);
    //i got error here; i attach the error below.
         ctx.close();
    System.out.println("close");
         catch(NamingException e){
              e.printStackTrace();
    ERROR:
    Login Successful
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - 00000057: LdapErr: DSID-0C090B38, comment: Error in attribute conversion operation, data 0, vece
    ANYONE HELP ME PLS.
    Edited by: vencer on Jun 19, 2008 12:38 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Creating a film roll

    I had backed up all my earlier photos to dvd and removed them from my hard drive. Then I got an external drive and decided to re-import them to iphoto6
    (some had been from 4 & 5) they re-imported but all to one big library without any film rolls, when I try to group them and create a roll from file menu it (create film roll) is grayed out. How can I create new film rolls?

    Gee ---
    this problem with not being able to create a new film roll (unless you have all the years in the library checked) has been going around since at least 2002. DUMB DUMB DUMB interface. It is 2007 and it is STILL HAPPENING. I thought is was my new camera (having only had the problem since getting it in Feb '07), but now realize it is not about the camera, but about the iPhoto IF. SIX looooonnnnng phone calls later with Apple Care, a complete reinstall of iPhoto, and rebuild (BY HAND) of all 10,000+ photos, and still it happens. Not one of the Apple Care people knew anything about it, until the "senior specialist" (the 6th iPhoto "expert" I spoke with) looked on the discussion strings.
    [rant removed by Hosts]
    Powerbook, other MACs, and others   Mac OS X (10.4.9)  
    Powerbook, other MACs, and others   Mac OS X (10.4.9)  

  • Need to Create New Commodity Codes....Please Help.

    Hi All Experts,
    I need to create new Commodity Codes for DE - Germany. The code numbers with the descriptiones I got from the Business user, there are 5 new codes.
    I need to know how to create these commodity codes and what I have to maintain for the fields like -
    Description:
    Specific unit of measure:
    Sec unit of measure:
    Additional Info:
    Min. Oil Product:
    It is highly appriciable if you all can please suggest me the complete process for this. 
    Please help me ASAP. Thanks to you all in advance.
    Best Regards....
    Somraj.

    90308930 u2013 Measuring fixture
    Description
    Electronic instruments and appliances fo
    r measuring or checking electrical quant
    ities, without recording device, n.e.s.
    n.e.s.  
    Spec.unit of measure
    KG   Kilogram
    Additional info
    2    Dispatch / Export
    85423910 u2013 Amplifier
    Comm./imp. code no.   85423910
    Description
    Electronic integrated circuits in the fo
    rm of multichip integrated circuits cons
    isting of two or more interconnected mon
    olithic integrated circuits as specified
    in note 8 (b) (3) to chapter 85 (excl.
    such as processors, controllers,
    controllers, memories and amplifiers)
    Spec.unit of measure
    KG   Kilogram
    Additional info
    2    Dispatch / Export
    85339000 u2013 Resistor
    Description
    Parts of electrical resistors, incl. rhe
    ostats and potentiometers, n.e.s.
    Spec.unit of measure
    KG   Kilogram
    Additional info
    2    Dispatch / Export
    Not idea, as I can't find these on my system
    82032000 u2013 Tool, gripper
    85044082 - Rectifier
    Try following link, I believe that can be helpful to you.
    - +_Customs-Tariff-Number_+
    Regards
    JP

  • What is the need of creating New order type in PO

    Dear Experts,
                 I have a doubt in MM, what is the need of creating New Order Types?  Please explain with Business scenario.  Thanking you,
    Regards,
    Elangovan.A

    Hi Elangovan
    Whenever you have a doubt like this...
    --- just verify the config settings for your parameter (order type here).
    ---Also check whether authorizations can be given for this ?
    ---Do you need it for specific analysis ? Are there standard reports/listings available ?
    So, some of the uses of order type are:
    1) What are the parameters controlled by order type ?
    It controls the number ranges and screen layouts etc. So, if you want to have different set of number ranges and different screen settings, then you may need a new order type.
    2) Authorizations can be controlled with order type.
    3) You can also use it in analysis/listings
    Best regards
    Ramki

  • I need help getting new authorization codes for digital copies

    I need help getting new authorization codes for digital copies of movies. Can someone help me out?

    There's a lot of results in Google when you search for this but unfortunately refreshing the page doesn't seem to generate a different code anymore. Mine also says already redeemed

  • Do I need to create new group for standby redo log files?

    I have 10 group of redo log files with 2 members for each group for my primary database , Do I need to create new group for standby redo log files for the standby database
    Group#     Members
    ==============
    1              2
    2              2
    3             2
    4             2
    5             2
    6             2
    7             2
    8             2
    9             2
    10           2
    If So, The following statment is correct? or nto
    ALTER DATABASE ADD STANDBY LOGFILE GROUP 1 ('D:\Databases\epprod\StandbyRedoLog\REDO01.LOG',D:\Databases\epprod\StandbyRedoLog\REDO01_1.LOG');
    please correct me if am doin mistake
    becuase when I issue the statment I getting error message sayin the group is already created.

    Thanks John
    I just find the answer
    Yes, it's recomeded to add new group , for instnace If I have 10 group from 1 to 10 then the standby shoudl be from 11 to 20
    Thanks I found the answer.

  • Can i replace my email in iTune account? with same credit card information? or do i need to create new one with same credit card? thanks

    hello all,
    i have an account on iTune, can i replace the email with another one and keep all information of credit card? sorta like creating a new account but you are not?
    or do i need to create new account but keep the credit card information?
    thanks all

    You have posted in the itunes U forum, where colleges, universities and museums post educational content for students.
    Try posting in the appropriate forum.
    Do not create a new account.  Go to your account in itunes and change whatever you like.  Your account name is in the upper right corner of itunes.  Click the drop down arrow and select account.

  • Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Is it installed? If so, go to Applications and choose either Adobe Elements 12 Organizer, or Adobe Photoshop Elements 12>Support Files>Photoshop Elements Editor.

  • When I enter my password to purchase a song, I need to create new security questions. Whenever I finish making thm and submit them, a box says "An error has occurred. We could not save your changes." How do I make it go away?

    When I enter my password to purchase a song, I need to create new security questions. When I finish writing them out and I hit submit, a box comes up with the words: "An error has occurred. We could not save your changes." What does that mean and how do I make it go away?

    Potentially the issue may be the combination of actual distance and the presence of any Wi-Fi interference at the location of the AirPort Express that may be the culprit here. The bottom line is you would want the Express to be within a 25+ dB range of the Extreme to be sure that it can consistently stay connected to it.
    For more details on proper base station placement, check out the following AirPort User tip. Please post back your results.

  • Need help getting new printer hp deskjet 3520 setup for eprint and wireless

    need help getting new printer hp deskjet 23520 stup for eprint and wireless

    Hi Pastorlee7,
    I see that you're having problems setting up your printer.  I would take a look at the document below.
    Hp deskjet 3520
    Let me know how it goes.  

Maybe you are looking for