Nested IPTC Tagging

I would like to know how to apply all tags when using a sub category tag.
For example:
Cars (CAT)
---Ford (SUB CAT)
------Fiesta (TAG)
------Mustang (TAG)
------Crown Victoria (TAG)
------Town Car (TAG)
------Explorer (TAG)
---Chevy (SUB CAT)
---Chrysler (SUB CAT)
I want to be able to apply the explorer tag to a picture and have it also write ford and cars as tags as well.
Also is there a way to get it to add tags based on your folder heirarcy in windows. For example I have a folder called 2007 with all the pictures I have take this year. Is there a way to get it to apply this to all the photos in this folder?

Shurafa
1. highlight all three items, Cars, Ford, and Explorer and drag them to the photo or photos.
2. I use the date method also. I have a category for the year and tags for the months. When I import a group of photos from the same time frame, I select them all and then drag the date tags to them. The helps me find each months photos for further tagging in case I accidently went back to all photos.

Similar Messages

  • Nested image Tag in tableview iterator

    In the past I use the tableview tag "tableViewColumn". In this tag a nested image tag inside a link tag was used.
    Now I use the tableview iterator. But I can only define one p_replacement_bee in the RENDER_CELL_START method.
    Does anyone knows a solution for my problem?
    Example:
    <htmlb:tableViewColumn columnName = "transport"
    tooltipColumnKey = "transport_tooltip"
    type = "user"
    title = "<%= otr(zinternet/tracking) %>"
    horizontalAlignment = "center" >
    <htmlb:link id = "$TVCID$"
    reference = "$TRANSPORT_LINK$"
    target = "_blank" >
    <htmlb:image src="$TVCVALUE$" />
    </htmlb:link>
    </htmlb:tableViewColumn>

    Just off hand I see one problem.  In your reference you have 'www.sap.com'.  This link wouldn't work (and might be causing your problem, because without the http:// on the front it would assume that was a relative path.
    Other than that I don't see a problem off hand.  I normally don't render my elements to BEEs and then add the BEEs to the BEE Tree. I prefer to render to elements and then use the ADD method instead of the ADD_BEE method:
            data: tag_gl       type ref to cl_htmlb_gridlayout,
                  tag_glc_if1  type ref to cl_htmlb_gridlayoutcell,
                  tag_glc_if2  type ref to cl_htmlb_gridlayoutcell,
                  tag_glc_if3  type ref to cl_htmlb_gridlayoutcell.
            tag_gl       = cl_htmlb_gridlayout=>factory(
                        columnsize  = '3' rowsize  = '1' ).
            tag_glc_if1 = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '1' rowindex = '1' ).
            tag_glc_if2  = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '2' rowindex = '1' ).
            tag_glc_if3  = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '3' rowindex = '1' ).
            data: seats_bee type ref to cl_bsp_bee_table.
            create object seats_bee.
            seats_bee->add( level = 1 element = tag_gl ).
            seats_bee->add( level = 2 element = tag_glc_if1 ).
            seats_bee->add( level = 3 element = if_first ).
            seats_bee->add( level = 2 element = tag_glc_if2 ).
            seats_bee->add( level = 3 element = if_bus ).
            seats_bee->add( level = 2 element = tag_glc_if3 ).
            seats_bee->add( level = 3 element = if_econ ).
            p_replacement_bee = seats_bee.

  • IPTC tags?

    Does anyone know if the keywords are part of IPTC tags now, or are they still only within iPhoto?
    Thanks,
    "D"

    I assume that this is still the case? Is there any way to petition Apple to start at least providing the option of providing standard IPTC metadata options in iPhoto and saving that information with the file in the standard way? They're doing it with Aperture, why not with iPhoto?

  • Loop through elements within nested:iterate tag using javascript

    Hello,
    I would like to loop through the adjustedLineItems list and set the checkbox values to true on click of a select all button.
    I am getting the error document.all['adjustedLineItems.selected'] is null or not an object
    however it works if I manually substitute values for i within the function
    document.all['adjustedLineItems[0].selected'].checked=true;
    document.all['adjustedLineItems[1].selected'].checked=true;
    document.all['adjustedLineItems[2].selected'].checked=true;
    Could someone please help me do this via a for loop?
    Thanks
    <nested:iterate name="invoiceForm" property="adjustedLineItems" id="adjli" type="com.bt.lex.common.lineItem.beans.LineItemDetailBean" indexId="idxadjli">
              <tr>
                   <td class="dataLeft"><nested:checkbox property="selected"/></td>
                   <td class="dataLeft"><nested:write property="liNumber"/></td>
              </tr>
    </nested:iterate>
    <script type="text/javascript">
    function onclick_all(ctl) {
         var checkFlag = "false";
         var count = document.all.numOfAdjustedLIs.value;
         var i = 0;
         //alert(count);
         if(ctl.checked)
              if(checkFlag=="false")
                   for (i = 0; i <count; i++)
                        document.all['adjustedLineItems[i].selected'].checked=true;
                   checkFlag = "true";
    </script>

    Its got nothing to do with nested iterate tags :). However,
    document.all['adjustedLineItems.selected'].checked=true;
    The variable 'i' is not getting evaluated as is evident from the error message - document.all['adjustedLineItems.selected'].
    The appearance of 'i' in the error message tells it all, right ? :)
    So
    document.all['adjustedLineItems[' + i + '].selected'].checked=true;should do the trick.
    ram.

  • Nested custom tag-jsp

    Hi,
    How can I use nested custom tags in jsp?

    Note that not all custom tags will work like this. The tag must be designed to work this way. Some tags will not accept a body, others will accept a body, but will not process it through the JSP compiler, rather handling it as text/html.
    Have you tried nesting them and you're not getting the expected results? Have you written these tags yourself and they're not working?

  • Nested Custom Tags

    Hello,
    I have a custom tag that I've written that has some
    attributes. I want to nest that tag inside of itself, and access
    the attibutes of the parent tag. However, when I try to access the
    parent tag's data from the child all I get is the child tag's data!
    If there are two of the same custom tags in the context stack, is
    it possible to access one from the other? Thanks for your help.
    Tim

    > I can't use the
    > CALLER scope, as that references the page that called
    the first custom tag, no
    > matter how deeply nested I am.
    I think you should test the advice, before you make
    assertions like this.
    The CALLER scope refers to the variables scope of the
    template that called
    the currently executing custom tag. If your calling stack is
    like this:
    index.cfm
    customTagA.cfm
    customTagB.cfm
    Then the situation is this:
    1) In index.cfm: no caller scope.
    2) In customTagA.cfm: caller scope references index.cfm's
    variables scope.
    3) custoTagB.cfm: caller scope references customTagA.cfm's
    variables scope
    (NOT index.cfm's one).
    Similarly, if your calling stack is like this:
    index.cfm
    customTag.cfm (*)
    customTag.cfm
    customTag.cfm
    customTag.cfm
    Then the caller scope in each customTag.cfm instance refers
    to the
    variables scope of the file above it. The only caller scope
    that
    references index.cfm's variables scope is the customTag
    instance marked
    with (*).
    If I understand your requirement, this is what you want. This
    is why I
    suggested it.
    Adam

  • Nested div tags "Design View" problem

    I have had ongoing problems using nested div tags to layout
    my page. The page displays correct in browser but does not display
    properly in Dreamweaver Design View. Highlighting the CSS id in
    Code View shows the correct groupings. The code also passed the
    validator test.
    I am fairly new at Dreamweaver so I could be missing
    something basic.
    Code is displayed at
    http://www.mektronix-net.campusbizcenter.com/

    I've not see this before, so can't say why it would be happening.  Would the pc be low on resources?  but then again you say it happened even after a restart of the pc.
    Maybe you could try the file cache and the personal configuration folder fix to see if it fixes any issues.
    http://forums.adobe.com/thread/417116#cache
    PS:  While I'm at it, it would be wrong for me to point out that using AP divs is not the optimum way to create a layout....  unless you know the repercussions of using them.
    Here's why:  (from the Dreamweaver FAQ)
    http://forums.adobe.com/thread/477969

  • IPTC tagging

    Hi Folks
    an acient user of PSE 6 and I have written IPTC tags to some 20000 plus photos - on re-loading pse6 Organiser I find the data is in the properties but I cannot use the find to pick up the vaiurous Tags and Albums - Abobe have been extremely helpful by stating 'up grade to our latest version (8) but fail to state if the function is missing in 6 and has been installed in 8 - it is there in 6 and I simply have failed to find it or it is not in 6 and not in 8 either.
    Either way having catalogued over 20000 twice - the first time not saving via write key word before the year crash of windows xp I don't want to go through the process a third time
    any suggeston would be appreciated
    Jim Allen

    Backing up XP would be a continuous process as with all microsoft programs,
    something tried in the past and never found successful, since windows 3.1
    Easier to keep the data separate from the programs on separate physical disc
    then in theory you don't loose your data and you only spend time reloading
    all the programs
    Disagree, strenuously. If your separate physical disk crashes, then you have no data. Any disk can fail; having your data on a separate physical disk is not protection. If you value your data, regular backups are mandatory. These forums are filled with people's stories who have lost all their photos or the tags because they don't back up properly or regularly.
    The problem is they are all meta tagged already, I just can't get at the
    tags as a group in any function of Organiser
    All the photos are backed up only the *.psa files are missing - from the
    backup the *.tly file within the back up won't behave either..... so that
    was a waste of time... surprise surprise - never have managed to
    successfully retrieve backed up data.... in 20 plus years
    Did you try the Organizer command File->Restore Backup? The .tly file can only be restored this way. "Won't behave" doesn't really explain anything.
    Further what good is an organiser which can't pick up the meta tags, unless
    it already knows about them before hand.....
    Disagree, strenuously. The Organizer will pick up tags that are in the files prior to import.
    I'm looking to build the catalogue from the meta tags themselves. While
    I agree the tags would be powerful if I could actually pick them up. But a
    program which restricts the user to what the programmer wants you to do as
    opposed to what the photographer wants and the computer naturally does is
    dare I say next to useless in the real world....
    Disagree, strenuously. If the tags are in the file, the Organizer will pick them up on import. Are you sure the tags are in the file before you import them? If so, how did they get there? Can you see the tags using Windows or freeware Irfanview? Most people know when they put tags into files, so please explain. Furthermore, PSE does not restrict you. It provides a command that writes the tags and other metadata to the files themselves so this information can be communicated to other applications, and to the "real world". You have to specifically tell PSE to do this, it doesn't do it automatically, but that is not restricting you in any way. It just adds a step.
    I'll have a look see if I can find a program more suited to my cataloguing
    needs for If I half to re-sort 27,000 photos then I may as well get one
    which is not reliant on a separate file to exist.
    While your needs may not be suited to PSE, everything you have said indicates that you haven't used PSE effectively, and that PSE actually does meet all your needs.

  • XMLParseException Bursting with nested empty tags

    The following XML gives us this error under 5.6.2 Burster:
    oracle.apps.xdo.batch.BurstingProcessorEngine][EXCEPTION] oracle.xml.parser.v2.XMLParseException: Unexpected EOF.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:233)
    .... and so on...
    <?xml version="1.0" encoding="utf-8"?><Receipt><FileName>MAR30_11801_5316026_receipt.xml</FileName><SignatureFileName>MAR30_11801_5316026_sig.png</SignatureFileName><OracleOrderHeaderID>5316026</OracleOrderHeaderID><ReceiptType>TAX INVOICE</ReceiptType><OrderNo>3013258</OrderNo><TimeStamp>11:55:49 AM</TimeStamp><TripID>MAR30_11801</TripID><CustPONo></CustPONo><BillToNo>234075</BillToNo><BillToName>BUNNINGS BUILDING SUPPLIES P/L</BillToName><ShipToNo>1048487</ShipToNo><ShipToName>BUNNINGS BUILDING SUPPLIES - PORT KENNED</ShipToName><ShipToAddress1>STORE: 2410</ShipToAddress1><ShipToAddress2>7 SUNLIGHT DR</ShipToAddress2><City>PORT KENNEDY</City><State>WA</State><PostalCode>6172</PostalCode><LineItems><LineItem><ProdCode>24</ProdCode><ProdDesc>18KG FL LS CYL</ProdDesc><QtyDel>2</QtyDel><QtyRet>2</QtyRet><Price>77.68</Price></LineItem></LineItems><GST>7.77</GST><Total>85.45</Total><PaymentTerms>KHG 30MONTHLY</PaymentTerms></Receipt>
    The issue can be resolved by "taking out" the redundant "LineItem" nested tag as there is only one lineitem in this example. As far as I can see this XML doesn't break any specs and should be easily able to handle the above example?
    Any clues??

    The following XML gives us this error under 5.6.2 Burster:
    oracle.apps.xdo.batch.BurstingProcessorEngine][EXCEPTION] oracle.xml.parser.v2.XMLParseException: Unexpected EOF.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:233)
    .... and so on...
    <?xml version="1.0" encoding="utf-8"?><Receipt><FileName>MAR30_11801_5316026_receipt.xml</FileName><SignatureFileName>MAR30_11801_5316026_sig.png</SignatureFileName><OracleOrderHeaderID>5316026</OracleOrderHeaderID><ReceiptType>TAX INVOICE</ReceiptType><OrderNo>3013258</OrderNo><TimeStamp>11:55:49 AM</TimeStamp><TripID>MAR30_11801</TripID><CustPONo></CustPONo><BillToNo>234075</BillToNo><BillToName>BUNNINGS BUILDING SUPPLIES P/L</BillToName><ShipToNo>1048487</ShipToNo><ShipToName>BUNNINGS BUILDING SUPPLIES - PORT KENNED</ShipToName><ShipToAddress1>STORE: 2410</ShipToAddress1><ShipToAddress2>7 SUNLIGHT DR</ShipToAddress2><City>PORT KENNEDY</City><State>WA</State><PostalCode>6172</PostalCode><LineItems><LineItem><ProdCode>24</ProdCode><ProdDesc>18KG FL LS CYL</ProdDesc><QtyDel>2</QtyDel><QtyRet>2</QtyRet><Price>77.68</Price></LineItem></LineItems><GST>7.77</GST><Total>85.45</Total><PaymentTerms>KHG 30MONTHLY</PaymentTerms></Receipt>
    The issue can be resolved by "taking out" the redundant "LineItem" nested tag as there is only one lineitem in this example. As far as I can see this XML doesn't break any specs and should be easily able to handle the above example?
    Any clues??

  • Nested html-tags in JTextPane not possible?

    Hi.
    Why does JTextPane not support contents like this:
    <p align="center">
      <h2>Hello, world!</h2> <!-- nested tag -->
    </p>This code is parsed and changed into:
    <p align="center">
    </p>
    <h2>Hello, world!</h2>Is there any possibility to get around this?
    Cheers,
    kelysar

    I do not know about how to treat HTML by JTextPane.
    According to http://www.w3.org/TR/html4/sgml/dtd.html,
    <!ENTITY % block
    "P | %heading; | %list; | %preformatted; | DL | DIV | NOSCRIPT |
    BLOCKQUOTE | FORM | HR | TABLE | FIELDSET | ADDRESS">
    So you cannot use h2 element in p element.
    Regards,

  • IPTC tag names used for text output in BorderFX export

    Does anyone have a reference list?  Nothing is documented or forthcoming on the BorderFX site.  For example, I have a photo with IPTC entries on the Aperture metadata/aka info tab under the Image section for both City and Location.  BorderFX has a built-in tag for "City" and that works fine.  There is an implied capability to add fields to the list, but there I am stymied.  There is no existing entry for Location.   I tried "Location", "Image location", ImageLocation", "Sub Location", Sub-location", etc. without success.  I tried using the names from the IPTC document referenced in earlier questions.  I delved into the tags used by AppleScript to no avail.  I might have to delve into the Aperture SDK, but I have not yet done much with XCode.  Or, perhaps simply there is no capability to use additional tags despite the appearances in the plug-in. 

    Bruce, what is your BorderFX version?
    Have a look at this post from Reinhard Uebel: He confirmed that BorderFX is not working for text in the latest version and announced that a new version will soon be available: See
    Re: Aperture crashed twice today. Comments?
    https://discussions.apple.com/message/22308358?ac_cid=tw123456#22308358
    Regards
    Léonie

  • Lightroom and IPTC / Tag character set

    I'm using TWG for my personal gallery. This tool accepts UTF-8 as character set.
    I've still not found any way to display properly my French or Portuguese accented or special characters coming from Lightroom (IPTC fields and Tags as well).
    Any tip ? Lightroom setting (to write in UTF-8) ? Post-treatment (to convert into UTF-8) ?
    Any help would be appreciated.
    Best regards
    Philippe

    This code below should work. Is this what you tried?
    CreateMetaFontWithCharacterSet ("ansiMetaFont", VAL_DIALOG_META_FONT, 11, 0, 0, 0, 0, 0,
                                    VAL_ANSI_CHARSET);
    SetPlotAttribute (panelHandle, PANEL_GRAPH, plotid, ATTR_PLOT_LG_FONT, "ansiMetaFont");
    Luis

  • IPTC - Tags & Keywords

    I am planning to switch from PhaseOne/MediaPro (MP) to Adobe PS13/LR. Before doing so I did some test, i.e. using PS13 I added places, people, events and ratings. I then looked at the image in PhotoMe and found the following:
    * People, Places and event are all added to Field = Keyword, Tag Name = Keywords
    * I could not find ratings in the list of IPTC fields
    So here are my questions:
    * Shouldn't "people" go under the field "Person Shown" in the IPTC Extensions?
    * Shouldn't places go into the fields "City", "Province/State", "Country", etc of Location Created in the IPTC Extensions?
    * Shouldn't events go under Event in the IPTC Extensions?
    * Where does ratings end up? I believe it should be under "Urgency" (depreciated, is there an alternative?) but can't find it anywhere.

    Sigurd den Haan:
    Welcome to the iView Forum. Where are you importing from? Another application? Are you adding keywords in that other application? If not, then where?
    No knowing the answers to those I will suggest that you do not use the auto-rotate in the camera. It has caused different problems in iPhoto, specifically the use of those images in other applications that do not read those auto-rotate tags.

  • Nested JSP tags not working in Weblogic 8.1/6.1

    Hi,
              I have a custom JSP tag which are used to display buttons (like Submit, Cancel, Revert, Previous etc) on a web page.
              This custom tag has a structure like
              <gui:toolBar>
              <gui:toolTemplate>...</gui:toolTemplate>
              <gui:button>
              <gui:buttonImg>...</gui:buttonImg>
              <gui:buttonAlt>...</gui:buttonAlt>
              </gui:button>
              </gui:toolBar>
              The <gui:button> tag can be repeated depending on the number of buttons needed to be displayed. The body content of the <gui:button> nested tags are used to populate the values in the <gui:toolTemplate/>.
              The issue is that if I have repetitive <gui:button> tags(meaning if I want to have 2 or more buttons), the page does not get compiled in Weblogic (both 6.1 and 8.1).
              But the same works fine in Websphere 4.x and 5.1.
              There are no exceptions being thrown and hence no clue as to what is the issue.
              If I have only one <gui:button> then it works fine even in Weblogic.
              Note: A link on a similar problem(but no soluton mentioned) is
              http://forums.bea.com/bea/thread.jspa?forumID=2025&threadID=200074523&messageID=202373683&start=-1#202373683
              Please advice.
              Sriram.C.S

    You're right, your situation is very similar to the situation the other poster describes. However, the main similarity is that neither of you have given us any information about what is going wrong. We can't read minds or read what's on your screen. We need to see specific error messages, stack traces, and specific code that shows what you are trying to do.
              However, it's likely that you're running into problems with the issues with "tag reuse" and "tag pooling". You should first read the JSP specification in the areas that talk about this issue, although this will probably leave you with more questions than you started with.
              I'm guessing that your "<gui:button>" element doesn't have any attributes. It's possible that WebLogic is reusing a single "<gui:button>" tag instance for each occurrence in your page. You may have to figure out how to turn off tag pooling in the JSP compiler, but I'm not sure how to do that.
              It's possible that Websphere doesn't give you an issue with this because perhaps they didn't bother with the tag pooling optimization (it is a good thing to have it available).

  • SimpleTag nesting / classic tag caching

    Is it possible to nest tags inside SimpleTags? Specifically, I have some struts <html:*> tags inside my custom tags, which are being spit out as text instead of being run against their TLD's.
    The reason I would like to use SimpleTags is that our server is caching data from classic tags and causing incorrect information to be shown if two users access the page at the same time.
    Alternatively, instead of translating nested tags inside a SimpleTag, would it be possible to somehow disable server-side caching for classic tags in Tomcat? Thanks.

    Is it possible to nest tags inside SimpleTags?
    Specifically, I have some struts <html:*> tags
    inside my custom tags, which are being spit out as
    text instead of being run against their TLD's.
    Yes, specify the bodyContent as 'scriptless' in the tld file for your SimpleTag.
    <tag>
        //other definitions
        <body-content>scriptless</body-content>
        <attribute>
             //attribute definitions
        </attribute>
    </tag>And then in your doTag() method, you should get the body content as a JspFragment and call the invoke() method on it passing null as the argument.
    public void doTag() throws JspException {
                                              //your stuff
              try {               
                   getJspBody().invoke(null);               
              } catch (IOException e) {
                   throw new JspException(e);
    The reason I would like to use SimpleTags is that our
    server is caching data from classic tags and causing
    incorrect information to be shown if two users access
    the page at the same time.
    Alternatively, instead of translating nested tags
    inside a SimpleTag, would it be possible to somehow
    disable server-side caching for classic tags in
    Tomcat? Thanks.This is fraught with danger - but you can reset the tag attribute variables to null at the end of your doEnd() method. I have seen it implemented this way in one of our projects that runs on weblogic.
    Does that help?
    ram.

Maybe you are looking for

  • Calling a function on an object passed as argument

    Hi everyone, i'm trying to call an actionscript function on an object passed as argument to a c function. Here are how I do : I have a class named test_class implemented as package      public class test_class           public var bliblou:int; and a

  • Selection screen with radio button groups

    hi experts, i have 3 frames in selection screen. in first frame i have two radio buttons. if i select 1st radio button 2nd  frame should be in active and  3rd frame should be disable mode. if i select 2nd radio button then 3rd  frame should be in act

  • How can I deinstall Acrobat DC and get the Acrobat xi back? DC is really bad ..

    the UI is a no go for me. Not for serious work. So I want to reinstall the old version! xx

  • Error when opening BEX from the WEB BI aplication

    Helo, I want to launch the BEW web application from the BI Launch pad. When i enter the username/ password for the BW system i git the followong error: BEx Web Application BEx Web Application Session Management Exception occured while processing the

  • Number of Frames in Animation?

      Hello! I was just wondering if there was anyway to figure out how many frames you have in an animation? Thank you if someone can tell me.