How to enter comments for each photo?  Preparing photos for auction house sale.

I have a historical collection of B/W photos preparing for sale to auction houses.  How do I catalog each photo with custom comments?  I have LR 4.4

You'll have to type that info into that field in the metadata panel.  I'm assuming you want to use the Caption, perhaps Title fields, both fields should be empty for you to enter custom text. If you select all images and enter the text, all images will get the same data. So think about what you want to pop in there and if you can do so all at once or if you'll have to do it image by image.

Similar Messages

  • Usage of for-each loop inside another for-each loop

    Hi All,
    I have tried using a for-each loop inside another for-each loop as given below.
    <?for-each:G_1?>
    <Customer Details>
    <?for-each:G_2?>
    <Address>
    <?end for-each?>
    <?end for-each?>
    Its not getting inside the second loop.I have referred this link
    Re: Loop Question but it didn't help me much.Please let me know if am going wrong somewhere.
    Regards,
    Sudeep.

    Sudeep,
    The syntax of the for-each statements looks oke. but you have omitted some question marks after the < and before the >.
    Furhermore, there cannot be spaces in XML element names. So, "Customer Details" won't work. Change it to something like: "Customer_Details". Also be reminded that the element names are case-sensitive.
    try this:
    <?for-each:G_1?>
    <?Customer_Details?>
    <?for-each:G_2?>
    <?Address?>
    <?end for-each?>
    <?end for-each?>
    Regards,
    Kevin

  • What's happening here: iCloud Photos preparing photos for 'Photos' app?

    This morning I came back from a weekend trip to Prague, where I took a number of photos with my iPhone 6. On my Mac I fired up iCloud Photos to see if everything was imported properly. That was about an hour ago. Since then I am presented with this screen, saying something like:
    "Welcome to Photos app. 
    With Photos app you may save your whole iCloud Photo Library ...
    Preparing photos ... This may take a few minutes.
    ... will be continued when you leave iCloud.com."
    However, with Yosemite 10.10.2 I don't have the new Photos app for Mac on my iMac!
    Now what is happening here?

    I even liked Apples error messages , because most of them were so helpful ... But now the smart guys at Apple seem to be following a more obfuscating strategy, at least sometimes.
      I suspect the maintenance work on iCloud Photo Library this weekend has been in preparation for the big life event today - then all will be revealed:   http://www.apple.com/live/

  • How to define a separate virtual host for each client in ICF for WebDynpro

    Hi,
    We have an ERP system with multiple clients running on it. The WebDynpro ABAP applications once developed are available on all clients, as standard. However, this is not our desired behavior. We want:
    1. The WebDynpro ABAP applications should be managed separately in SICF depending on the client
    2. The URL for accessing the WebDynpro application should have a own host name for each client. e.g.
    A WebDynpro application on client 100 should be accessed by http://host1:5000/sap/bc/... and the same application on client 200 should be accessed by http://host2:5000/sap/bc/...
    After a while researching I find out that creating a virtual host for each client in SICF would be a possible solution to fulfill the above mentioned requirments:
    1. Set the profile parameter is/HTTP/virt_host_* with corresponding host name and port number
    2. Create a new virtual host in SICF assigning the profile paramter to it
    3. Assign a client to this virtual host
    My question is how to specify a client to a virtual host? I didn't find any possibilities in SICF!
    Anyone can help me? Thanks a lot in advance!
    Best Regards
    Di Li

    Hi Srikishan,
    thanks for your reply. Your suggested way is certainly a potential, and also my preferred option for solving the multiple-client-capable URL access to WebDynpro / BSP applications.
    However, for some reasons, based on the customer requirements, the client should not be visible in the URL. The URL for accessing the WebDynpro / BSP applications on different client should have different host name, as if they are different companies. Besides that, we want to manage each WebDynpro / BSP application on different clients in SICF separately.
    Therefore, at least on my opinion, we need to introduce a virtual host for each client in SICF. But how do I make it happen?
    Regards
    Di

  • How to compare the value node of a for-each-group with other for-each-group

    Hello!
    I have a report in Oracle BI Publisher (10.1.3.2) with several data set. My XML schema is something like
    <DATA>
    <PARAMETERS>
    <MY_PARAMETERS>
    <A_ID>12345</A_ID>
    <DESCRIPTION>ABC</DESCRIPTION>
    <VALUE>111111</VALUE>
    </MY_PARAMETERS>
    <MY_PARAMETERS>
    <A_ID>12345</A_ID>
    <DESCRIPTION>DEF</DESCRIPTION>
    <VALUE>222222</VALUE>
    </MY_PARAMETERS>
    <MY_PARAMETERS>
    <A_ID>67890</A_ID>
    <DESCRIPTION>ABC</DESCRIPTION>
    <VALUE>333333</VALUE>
    </MY_PARAMETERS>
    </PARAMETERS>
    <NAMES>
    <MY_NAMES>
    <A_ID>12345</A_ID>
    <NAME>ASDF</NAME>
    </MY_NAMES>
    <MY_NAMES>
    <A_ID>67890</A_ID>
    <NAME>EFGH</NAME>
    </MY_NAMES>
    </NAMES>
    <VALUES>
    <MY_VALUES>
    <A_ID>12345<A_ID>
    <VALUE>10987</VALUE>
    <DESCRIPTION>ASDFG</DESCRIPTION>
    </MY_VALUES>
    <MY_VALUES>
    <A_ID>12345<A_ID>
    <VALUE>26385</VALUE>
    <DESCRIPTION>EFGHI</DESCRIPTION>
    </MY_VALUES>
    <MY_VALUES>
    <A_ID>67890<A_ID>
    <VALUE>24355</VALUE>
    <DESCRIPTION>ASDFG</DESCRIPTION>
    </MY_VALUES>
    </VALUES>
    </DATA>
    I'm trying to build a rtf template in Word using this XML schema. The "A_ID" nodes in each group in my data have the same value. I want for each "A_ID" take the respective values in /DATA/VALUES/MY_VALUES.
    <?for-each-group:MY_PARAMETERS;./A_ID?>
    <?for-each:current-group()?>
    <?choose:?><?when: DESCRIPTION='ABC'?>
    <?VALUE?>
    <?end when?><?end choose?>
    <?end for-each?>
    <?for-each:current-group()?>
    <?choose:?><?when: DESCRIPTION='DEF'?>
    <?VALUE?>
    <?end when?><?end choose?>
    <?end for-each?>
    <?/DATA/NAMES/MY_NAMES/VALUE?>
    <?for-each-group:/DATA/VALUES/MY_VALUES;./A_ID?>
    <?for-each:current-group()?>
    <?choose:?><?when: DESCRIPTION='ASDFG'?>
    <?VALUE?> <---------------- I obtain for this node the '24355' and '10987' values
    <?end when?><?end choose?>
    I want to know how to obtain only '24355' value, this is, the value for A_ID (/DATA/VALUES/MY_VALUES) = A_ID (/DATA/PARAMETERS/MY_PARAMETERS).
    Can someone help me?

    CREATE OR REPLACE TRIGGER "TEST_TRG"
       BEFORE UPDATE OF "STATUS"
       ON "TABLE1"
       FOR EACH ROW
    BEGIN
       IF (:NEW.status = 'HOLD')
       THEN
          INSERT INTO table2
                      (status
               VALUES (:NEW.status
       END IF;
    END;You should learn how to write PL/SQL code.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • HT4859 I own 2 ipods and one ipad, how much space do I have in the icloud? Is it 5G for each product or 5G for all three?

    I own 2 ipods and one ipad2, how much space do I have in the cloud? Is it 5G for all three devices?

    So, can I use an email for the ipad(which is mine) and a different email for the other 2 ipods(my childrens) and have 5G for each account?

  • Java For-each loop to JavaFX for loop

    Hi
    I have a the following Java for-each loop :
    private int w = 250;
    private int h = 100;
    private int targetPixel[];
    private final static int a = 0xff000000;
    for (int i=w*h-1;i>=0;i--)
         targetPixel=a;
    My problem is since in JavaFX their is no for each loop how do you convert this java for-each loop to a JavaFX loop? Could you please provide me a solution with a sample code.
    Thank you.

    How to resolve this code to java fx?
    int particles = 10;
    int textures = 32;
    Random rnd =new Random();
    IDX particle=new IDX [particles];
    for(int i=0;i<particles;i++)
         particle=new IDX (textures*i/particles,rnd);
    Here new IDX is a class like the following class IDX
         double x;
         double y;
         double z;
         int xx;
         int yy;
         int index; //Texture index
         public IDX (int textureID,Random rnd)
              x=rnd.nextDouble()*2-1;
              y=rnd.nextDouble()*2-1;
              z=rnd.nextDouble()*2-1;
              index=textureID;
    my problem is how do you pass values to a java fx class constructor if javafx class has constructors. please help?
    Edited by: R34GTR on May 14, 2009 8:29 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Do we document BOM information for each item in BR100 for BOM?

    Hi,
    I'm working on BR100 for BOM. I noticed that in BR100 BOM template there is not a section for the documentation of BOMs for each item. I wonder if the standard is not documenting any of that information in this document?
    Thanks a lot,
    Robert

    Hello Robert,
    BR100 explain all setups steps for modules.
    BOM for each item is not 'setup' but 'Data Management'.

  • For the last week or three Firefox refreshes two or three times for each refresh, and sometimes for no obvious reason..

    For the last week or three Firefox refreshes two or three times for each refresh. Sometimes it refreshes for no obvious reason. For instance, I'll be in the middle of typing into a forum's post block & it refreshes. Or filling out an online form. Or simply viewing a page.

    You can check for issues caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Are the "Previews" for each movie a indicator for quality?

    I just got my Apple TV today and although I haven't bought any movies from it, I was wondering if when you're viewing a preview/trailer for a movie if that trailer is a good indication of the quality of the film?
    I was watching a trailer for "Next Three Days" and it look pretty bad and began to wonder about my purchase.

    Ibis Ghost wrote:
    My television is a Pioneer Elite Pro Kuro that has been ISF calibrated.
    Should not be an issue with the plasma, however do not expect AppleTV to give the best video experience - it cannot match Blu Ray for sheer quality and audio options simply due to the fact that you're using considerably less data for an AppleTV rental (1-1.5GB for SD, 3-4 GB for HD) vs a Blu Ray (up to 25GB of data to play with).
    I am quite sensitive on my Panasonic plasmas to the issue of poor gradation in dark/bright scenes with AppleTV where you get discrete dark grey/white bands instead of smooth dark grey>black or near white>full white. While some of this could be my TVs, I found the SD preview for the latest Karate Kid film particularly revealing of the dark banding trait, and I opted to rent the Blu Ray instead which looked fine by comparison in darker scenes.
    It may be the AppleTV, but I think it's more likely just lack of detail encoding inherent in the compression methods used. I also notice similar problems when viewing digital terrestrial TV on heavily compressed channels.
    AC

  • CATS - How to enter times of an employee who works for 2 different Org Unit

    Hi,
    I am able to successfully enter times for an employee and do the approval process (CAT4) and CAT6 and I can see the records getting updated in PA30.
    Scenario :
    Employee works for 2 different Org Units and should be able to enter his time through Timesheet. Eg: Employee A spends 6 Hours working in Department B1  &  3 Hours in Dept B2.
    The Manager of B1 should only be able to approve 6 Hours of Employee A
    The Manager of B2 should only be able to approve 6 Hours of Employee A
    Can somebody help me out how this can be achieved?
    Regards,
    Mamta

    Hi Sameer,
    Thank you for the response. Yes, when I report the times for 2 different org units I would also want the cost for that employee distributed between org units.
    I tried your solution-> by entering times in CAT2 for Employee A for 2 different Cost Centers that I created.
    For Department B1 --> In CAT2 I entered   Cost center C1 :  6 Hours
    For Department B2  -->In CAT2 I entered   Cost center C2 :  4 Hours
    When I go to CAT4 and try to select the employee for approval and search the employee-A Org unit wise he is displayed only in his original Department -> B1 with 10 hours (6+4). What else do you think needs to be done?
    Is this anything to be done with Sender Receiver Cost Centers because the cost center C1,C2 that I created for Org Units B1 & B2 respectively are just Cost Centers. I dont know the difference between Costcenter and Sender Costcenter/Receiver Costcenter.
    I will try to explain the scenario again in case I was not clear :
    u2022Each employee has their home OU.  However these employees may be working with multiple OU each day or the week.  So potentially, the time sheet may have to be approved by multiple managers.
    Regards,
    Mamta

  • Icloud photo "preparing library" for weeks, is this normal

    Using OSX photos beta. My photos have uploaded to icloud and are in sync between devices. However, when logging into icloud photos on any browser, I have not gotten beyond the "preparing library..." message. It's been about two weeks of preparing. My library is not that substantial (7,000 photos). I feel like the preparing should have finished by now. Anyone else experiencing this issue?

    If any of the following is incorrect, please let me know, thanks.
    Now that I've had my first bad experience with Verizon in the 16 years I've been a customer, I'm checking out my options.  If the third Palm Pixi is defective, here's what I understand are my options:
    1.  I can keep getting replacement Palm Pixi Plus phones
      1a.  Would involve down-time both for calling and computer while waiting for replacement phone
    2.  I can send the Pixi back to Verizon and reactivate my old phone.  BTW it's nearly four years old and still works good unlike the two new Pixi phones that crapped out
      2a.  I can drop the data package but now I'm again under a contract
      2b.  I will have lost my right to an upgrade to a new phone
    3.  I think I understood that I can exchange the Pixi if defective for another phone but will either:
       3a.  Pay the full price of the phone
       3b.  Settle for a re-conditioned phone
    Hopefully the third Pixi will work and we'll live together as happily as I have with my nearly four year old non-smart phone.
    The CS employees have all been very pleasant and helpful, however, I am very disappointed in the company.  I guess I didn't read the fine print, even if the "new" phone is defective and I send it back I'm punished by Verizon by being held to a new contract period and no upgrade for 18 months.  Live and learn.   BTW, I have several ecommerce carts so I really need to be able to get Online!

  • HT1495 I have 3 iphones, an ipad, and several ipods.  how do I give them seperate apple id's and create a master account.  This way I do not have to purchase music for each device individually.  For now we just share an id.  This no longer works for us.

    I need help!  I have multiple devices and would like everything linked to one master account, however, I need seperate IDs so that we can use imessage and facetime on each device individually.  How do I do this?

    I think I will do this.  I will use my apple ID and set face time and message to work independently.  That solves one problrem.  My other problem and maybe my bigger problem is that if I am using my apple ID, how do I iflter all of this so that my kids don't see my contacts, get my apps, etc. ?

  • Where can I find a list of names for each component and functions for each component?

    I have a test I need to study for, and we used this program in class during our labs. Is there any place I can find the names of the components and definitions of their exact functions? Thanks.
    If not I'll post pictures of the VI's we created, hopefully this is a simple question though.

    Try the context help.  When you move the cursor over each item, the help window will show a brief description and in most cases a link to detailed help.  It is generally useful to keep context help turned on while programming.
    Lynn

  • Just uploaded latest version . there is a song count and playtime for each playlist, but not for the whole library or dupes list which is seriously annoying

    cant find a song count or play time for whole library or dupes list in latest version

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

Maybe you are looking for

  • How can i allow multiple incoming connections on my windows 8 vpn server?

    Hi eveyone,  Im trying to find out how to allow more than 1 incoming VPN connection into my windows 8.1 PC and no clue how to do it without openVPN or other programs (which i have no clue how to set up either) Im starting to use my home NAS for work

  • Cproject - Problem during exprort a project to ms project

    Hi, I use cproject tool to create the project: IT Project. The project schedule is exported to XML as following: <?xml version="1.0" encoding="utf-8" ?> - <cPr:cProjects xmlns:cPr="urn:cProjects"> - <Project> - <ProjectData>   <NUMBER>P2</NUMBER>   <

  • I lost contacts on IPHONE and in Address Book on MacBook Pro

    Hello, I just update my iOS5 on my iphone and my contacts are missing out of the iphone and MacBook Pro. I tried a restore and nothing..... did they go to ICLOUD and how do I go to the clouds to get my contacts back? thank you, angel

  • HD died... anyway to move apps and songs from Iphone back into my itunes?

    Hi All, as the title states, my HD died and was replaced, no data could be retrieved. I had a recent work back up, but my personal files (pics, garage band recordings and Itunes files) were last backed up in Dec 08, I know... back up more often. Anyw

  • About EP(on UNIX) UME integration with LDAP

    Hello guys, We want  that UME use LDAP(read-only) as data source  . Our EP installed on UNIX , LDAP on Windows. Connection data Server Name:    sapsso Server Port:      389 User:               p106658 (an administrator user) Password:        ****** U