Add keywords to the photos inside the shirt + subfolders?

I have my photos stored in the record of the year-> month-> events

Now, I want to add the keyword '2009' to all of my photos turned in 2009 and 2008 every time of 2008...

But is it possible to leave the bridge to add tags to pictures inside this folder or do I have to open all the files and add the keyword?

I tried, but this won't work for me - I am using Bridge CS4.

go to the folder 'year' and select Show-> Show items from subfolders, select all the files and add your keyword

Tags: Bridge

Similar Questions

  • Adding keywords to several photos has stopped working

    All day I've been import photos and add keywords to them.  I add keywords to all photos when importing, then import I go through each photo and add additional key words as needed.  It worked fine all day, but all of a sudden when I pointed out several photos and add keywords, it is only to apply the new keywords to the last photo has highlighted.  I closed the program (LR5) and reopened, but that did not help. What have I done wrong?

    Thank you

    You select photos in the grid and not in the Filmstrip at the bottom m.

  • When you add pictures to the Vista image folder it creates a folder HIDDEN of the same name with two copies of the same image inside

    I use Vista 32 bit. I started to see this problem when I recently copy photos from an SD card.

    When you add pictures to the Vista image folder it creates a folder HIDDEN of the same name with two copies of the same image inside

    I saw hidden files enabled in folder options.

    Any help is appreciated.

    Hey guys... I found the answer... Problem is with the software vaio content analyzer that comes with the vaio...

    It just search for Vaio Content Analyzer (parameters) and deselect

    Video analysis
    image analysis
    analysis of the music

    I went looking for this crazy thing... used almost all types of online scan, and finally to find that it is caused by an internal software only...
    anyway thanks to all... Hope it helps someone in the future :)
  • Script to add keywords in Bridge based on the name of the file

    I'm working on a script that adds keywords based on the name of the image file. So, if the name of the file is AG123456 (08_16) .tif, this script would add "Agriculture", "123456" and "8/16" as keywords in bridge. "" I have a small sample of the part that retrieves the name of the file written in AppleScript below of each keyword. I know that I need to write the part that actually adds the keywords in Bridge in JavaScript, because the bridge is not capable of AppleScript. I have trouble finding the JavaScript code, I need to add the keyword. If someone could help me with this, I would really appreciate it.

    I would like to call the JavaScript code to in AppleScript instead of writing all the code in JavaScript. (The full version of it's longer, it would be a lot of code to change in JavaScript).

    on Open of droppedfiles

    with timeout of 900 seconds -> Changing timeout to 15 minutes. Default value is 2 minutes.

      -------------------------------------------------------------

    -GET THE CHARACTERS OF THE FILE name

      -------------------------------------------------------------

    Repeat with aFile in droppedfiles

    say application 'Finder '.

    the value file name to name of aFile

    end say

      -------------------------------------------------------------

      -------------------------------------------------------------

      -------------------------------------------------------------

    -ADDED a KEYWORD FOR EACH PREFIX

      -------------------------------------------------------------

    -Find the prefix in the name of the file

    if text 1 thru 2 of file name contains "AG" then

    the value prefixKeyword to 'Agriculture '.

    else if text 1 thru 2 of file name contains "To THE" then

    the value prefixKeyword to "Automobile".

    on the other

    the value prefixKeyword to "Need to prefix".

    end if

    -Adding the prefix as a keyword

    display dialog prefixKeyword string

      -------------------------------------------------------------

      -------------------------------------------------------------

      -------------------------------------------------------------

    -ADDED a KEYWORD FOR EACH SKU NUMBER

      -------------------------------------------------------------

    -Creating a list of all single digit numbers

    the value numberList to {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}

    -Looking FOR THE SKU NUMBER

    -Looking for a six-digit number that starts on the third character of the file name

    if numberList contains (text 3 of file name) et numberList contains (text 4 of the file name) et numberList contains (text 5 of filename) et numberList contains (text 6 of file name) et numberList contains (text 7 of file name) then

    if numberList does not work contain the text 9 of file name and then

    if numberList contains (text 8 of the file name) then

    the value skuNumber to of 3 to 8 text filename

    the value skuNumberOffset to 8

    end if

    end if

    -Searching for a six-digit number that begins on the fourth character of the file name

    else if numberList contains (text 4 of the file name) et numberList contains (text 5 of filename) et numberList contains (text 6 of file name) et numberList contains (text 7 of file name) et numberList contains (text 8 of the file name) then

    if numberList does not work contain the 10 text of file name and then

    if numberList contains (text 9 of file name) then

    the value skuNumber to text 4 to 9 of file name

    the value skuNumberOffset to 9

    end if

    end if

    -Defining the SKU number to alert keyword keyword the user can search the

    on the other

    the value skuNumber to "Need SKU number.

    set skuNumberOffset to 0

    end if

    -ADDING THE SKU AS NUMBER one keyword

    display dialog skuNumber string

      -------------------------------------------------------------

      -------------------------------------------------------------

      -------------------------------------------------------------

    -DATE ADDITION OF FILE name

      -------------------------------------------------------------

    if file name contains "(" et nom de fichier contient ")" then "

    set leftParen to "("

    set rightParen to ")"

    -Obtain the month of the file name

    set monthOffset of (offset of leftParen in fileName) + 1 -> character returns immediately after)

    set fileNameMonth to character of filename monthOffset

    -Get all the numbers of the year of the file name

    set fileNameYearOffset1 to (offset of leftParen in file name) + 3

    set fileNameYearOffset2 to (offset of rightParen in file name)-1

    set fileNameYear1 to character of filename fileNameYearOffset1

    set fileNameYear2 to character of filename fileNameYearOffset2

    set of characters fileNameYear fileNameYearOffset1 to fileNameYearOffset2 of file name

    set dateKeyword to fileNameMonth & "/" & fileNameYear

    -ADDING THE SKU AS NUMBER one keyword

    display dialog dateKeyword string

    end if

      -------------------------------------------------------------

      -------------------------------------------------------------

    fin Repeat

    end timeout

    end open

    Here's an example of adding of keywords in a file, the code can be used in Bridge or Photoshop.

    var Keys = ["keyword1","keyword2","keyword3"];
    var file = File (Folder.desktop + "/zz.jpg");
    if(file.exists) setKeyword( file,Keys);
    
    function setKeyword( file,Keys){
    if ( !ExternalObject.AdobeXMPScript ) ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
            var xmpf = new XMPFile( File(file).fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE );
            var xmp = xmpf.getXMP();
            for(var s in Keys){
            xmp.appendArrayItem(XMPConst.NS_DC, "subject", Keys[s], 0,XMPConst.PROP_IS_ARRAY);
        }
          if (xmpf.canPutXMP( xmp )) {
             xmpf.putXMP( xmp );
          }
          xmpf.closeFile( XMPConst.CLOSE_UPDATE_SAFELY );
    };
    
  • Photos have all keywords, but the list of keywords don't show them any

    Hello

    After moving to a MBP to an iMac and migration all (Lightroom and Photoshop CC), I have this problem very very strange.

    If I click on an image, going to all of the assigned display keywords in the keywording pane little. However when I go to my list of keywords pane I can't find anywhere in the hierarchy. When I put the same word in the search field, it will then find it without problem and even show in the right place in the hierarchy. What is more strange is that the arrows are now all the dotted lines.

    For example. If I'm looking for "Eastbourne in the search field, it will show me where it's...» (Country - Britain - Eastbourne). When I look in the list of key words if he stops in Britain and display an arrow dotted with only two other entries.

    Does anyone know a solution to this problem?

    See you soon

    Ray

    These screenshots show you have two keywords of level higher, 'Place' and "countries and regions".  Under these top-level keywords are location > Europe > great Brittain [sic] > Eastbourne and the countries and regions > Great Britain.    Somehow, you inadvertently created two hierarchies under different.

    After moving to a MBP to an iMac and migration all (Lightroom and Photoshop CC)

    How exactly did you do this migration?  Have you copied the files and the catalog .lrcat file photos?  Or did you just copy the photo files, install Lightroom and reimport all photos on the empty catalog, Lightroom has created for you?

  • How to add a logo of company on the shirt of a character?

    The program of love and export my work to the PS... but how can I add a logo to the shirt of characters... This is my first foray into the 3d world so be gentle... Thank you

    Welcome to 3D!  It is a pleasure and an exciting place.  It is easy enough to do something like a logo.  Since you are new, brief explanation!  The models have so-called textures that tell them what color and other properties, they should have.  Fuse your character comes with several models and textures already made to fuse and brought back to Photoshop.  When you add the character to your canvas, you will notice the layers has a panel arrow that you can expand to view all textures associated with this model.  The diffuse textures are what manages the colors.

    • Add your character to the canvas
    • Expand the 3D layer to see textures that are associated with
    • Find the file called _Top_Diffuse under the section disseminates.  Double click it to open the texture.
    • You should see an area colored with essentially a 'model' for clothing.  (If you don't see the default template you can turn it on by going to the view menu by selecting > Show > UV Overlay.)  The UV model will help you understand what parts of the texture affect the 3D model.
    • The texture is a full PSD file so that you can put in your logo as a new layer, apply adjustment and paint filters.
    • When you are finished, you can save the .psd and your other tab (the character) will be updated!
    • You can also paint 3D directly on the model using a paintbrush in 3D mode.

    I recommend you to Watch this video tutorial that explains how to do all the work of texture and painting 3d if you get lost!

  • Using Windows 7 and LR 5 when I look at the list of keywords a keyword has 7 photos but when I check the library with this 350 photos filter keywords appear which includes 7 photos that have the keyword.  Why the showi filter library

    The use of Windows 7 and LR 5, when I look at the list of keywords a keyword has 7 photos but when I check the library with this 350 photos filter keywords appear which includes 7 photos that have the keyword.  Why the library filter, showing images that do not match the query

    John,

    Thank you very much for the work you've put into this.  I made the change you suggested making the subkeywords under 'schwartz' to be {name schwartz}.  I don't know who has contributed something, but I think that there are more immediate problem which is mucked up.  As well as the fact that I have several catalogs that I don't know how they were created, I think that the best thing would be to merge all the catalogs into one (it is better to have a single catalog, right?) and delete all the keywords from scratch.

    Thanks for your help.  I'll mark this as resolved issue.

    Dan

  • Script to add description and keywords to the files of text file

    If anyone can write something for me? I must say I can't do it myself, I don't know Javascript.

    I need to add keywords and a description to 1000 pictures. I have a file of text formatted as such for each 100 images. The script will have to request an input file (or I cannot hardcode the path in the script) and apply to the folder being images in bridge.

    Example of a text file:

    1000 Bright Sunset Over City. (sun city sky; mountain;).

    1001 - Dawn Behind mountain and Lake. (Sun Mountain water; sky;).

    1002 - red sunset, sharp light of the bright clouds. (Sun sky tree; clouds;).

    1003 - tree framing Sunset Over the Bay. (tree; Sun Lake; Bay;).

    1004 - Sun Behind Seagull on stilts. (Seagull; Sun sea; stilts;).

    images are named 1000.tif, 1001.tif, 1002.tif etc.

    Running on a Mac with CS3 and CS4.

    Thank you

    Chris

    Thank you very much, David, I have to read more about these things, I modified the script you wrote.

  • PSE7 Newbie - want to add text at the bottom of the photo.

    I know that it's really a fundamental question, but all I want to do initially is add text at the bottom of a photo and I want to use layers.

    1. I don't even know if it's the right sequence, but first of all, I get the picture (from file-> open in the editor).

    2. then, I create a text layer, but the layer is created the same size as the photo.

    I don't want the text on the photo, I want the text somewhere under the photo.  I discovered that I can move the Photo up and put the text below, but I lose the top 1/2 inch or more of the picture.

    Lets say I have a picture that prints 4 x 6 as a photo.  This money which, according to me, that I need is an editor window with the photo at the top with an empty space, 1/2 inch or so, photography, a place that I can put a text.  I realize that when I print a photo 4 x 6, the photo itself is only 3 1/2 x 6, but I don't think that ius here everything what I can do about it.  The point is that I want / need the photo to print with no cropping (Group hphoto with heads next and above).  Am I even explain it properly.

    I got something of almost works using resize the canvas, but ran into problems when you try to change the color of the cloth - and I don't want to get into this problem now (unless I have to).  It seems to me that I should be able to do it with just a couple of layers, the layer of text photo and t - I just do not find haoe to resize the layers to accomplish what I want to do.

    So I explained it clearly enough.  I can do with just a couple of layers.  Is it as simple as I think it should be.

    Ron in Round Rock

    Do you mean that you do not find guided edit, the player of the shares or is not for that action in the action player?

    The addition of canvas adds to the whole image.

    You don't want to resize, just to enlarge the canvas itself. Set your background color to what you want the new canvas, then go to Image > resize > canvas size. Click on the top square of the Center to the point of reference and change only the length, the width of no, the canvas.

  • search with the keyword in the title of the album - showing not

    When I got iPhotos / before I upgraded to El Capitan, voluntarily I named a couple of albums with the same word so I can see them all together in the search for this word.  Now, when I do a search, a list of all albums showing on the right.  The photos are not displayed.  Is it possible to view the photos instead of just the titles of the album?  Thank you.

    Now, when I do a search, a list of all albums showing on the right.

    You can click on the albums in the list to open them one by one. But research will not display the photos in the album. You will need to add the keyword to the individual photos in the album to show the photos in the list.

  • How just the keywords in a folder to display name, but not the keyword of the same name, itself?

    In my keyword hierarchy, I, for example, special types of photography.  It is a folder called "photography."  Below I have landscape, portrait, seascape, Candide etc...  How can I get just the keywords within the photograph on the screen, but not the word "photography" itself?

    How can I get just the keywords within the photograph on the screen, but not the word "photography" itself?

    Do you mean, how do you get pictures containing child 'photography' to display keywords, but not the photos containing the keyword "photography"?  If that's what you want:

    In the library filter bar metadata Explorer, add the keyword column.  Expand the parent keyword "photography".  Click on the first keyword of the child and shift + click on the key word of the last child, so that all the keywords under "photography" are selected.  All the photos containing the child keywords of "photography" show now, but no photos containing "photography":

  • Why can't I add keywords in Lightroom 5.7 Photo/add keywords?

    Why can't I add keywords in Lightroom 5.7 Photo/add keywords?

    It must be much more documented on "not capable".

    Error messages?

    Make sure that the right of the tabs pane is visible. The menu command is just a hop in the "Keywords" tab

  • Keywords in the Keywording Panel duplicate

    I have kind of a lack of knowledge about hierarchies of keywords already installed and used.  This issue is going to be less together.

    I will have imported all my photos in Lightroom already.  Their keywords are associated should be in the keyword Panel.  (I him did not yet.)

    Most of the imports, which are keyworded in Nikon View 6.0.0.  (I have not already no flat keywords list or hierarchical keyword list in Nikon View.)  I have these photos in Nikon View IPTC looking at a list of independent paper keyworded.  The rest of the recent photos imported is were keyworded inside Lightroom or Nikon View NX2 keyworded and imported.  [I haven't decided yet who I Lightroom or NX2 keyword... unless you have a suggestion.]

    The hierarchy of words keys will have made upward after that most of my photos have been imported...  In short, I'm trying to give you a future scenario of my workflow at this point so I can start to ask questions.

    I have read of people having problems with keywords in double being added to the Panel keyword list Lightroom after they get their hierarchy/list of keywords in place.  The following reflections on key words in double turn in a hierarchy of keywords, I have read and am not 100% clear on:

    "The problem with the hierarchical keywords is that they always end with key words child somehow reappear at the top level."  There are times when they re - import an image that is processed in another application.  Or when a child keyword group is duplicated in more than one part of the hierarchy.  Often because they changed the hierarchy at one point and imported an older file.  Or they changed the hierarchy on a laptop and then files the main PC.  Something still bothers the logical structure, they put in place.  So rather than continue with this problem, they are returned in a simple list in Lightroom. "

    If someone could mean what is above, so I'm 100% sure I think I know what he says?  Are there cases more I could get an unwanted duplicate keywords or keyword in the Panel?  So it's not a good idea to change the hierarchy after you get it set up?  How about additions?

    I fear now start a hierarchy!  Fear of problems it can cause in the future.  I like the idea, you can filter the search on a whole category or subcategory.  It is easier to zip down to find a keyword.  Especially with the 700 more keywords.  I'm afraid to impliment it.  Could someone explain to me?  Thank you very much for any information!

    Sandy

    Assignment: create a small catalogue with a few files and hierarchy of keywords as show you. Then assign pictures to Celina and some photos to Van Wert (or use any existing hierarchy you) and see what happens.

    Try also braque on the keyword Celina on the right in the list of keywords, and right arrow Panel will appear to the right of the number of photos that appear, click the right arrow.

  • Add or remove the content dynamically list

    Hi, is anyway to add or remove the display content dynamically.

    I want to add content running.

    I just thread http://supportforums.blackberry.com/t5/Java-Development/adding-and-removing-listField-items-dynamica...

    But I don't have that clear.

    Could someone help me to do this?

    Thanks in advance.

    I feel list.invalidate must come after the list. SetSize & reminder.

    Then, you add just one element in the list or the list itself - was the list added to tab2Manager before calling this method? If so, you must not remember add (list). It can als be the problem.

    I would also give some SOP & try... catch inside the race to debug and to know exactly what is causing the problem and where.

  • Cannot add anything to the CC library - icons greyed out

    Hello world

    One of my users use Adobe CC 3.8.0.310, Indesign CC 2015.4 Release (11.4.1.102), but also Illustrator CC 2015.3.1 Release (20.1.0) on an iMac, retina 5K 27 "end 2014 model running OS X Yosemite v10.10.5

    The user has been able to add graphics, styles, and colors to the CC library available in InDesign up to 3 weeks, when they face the following problem:


    Screen+Shot+2016-09-15+at+4.33.36+pm.png

    Here, the buttons are gray and I have no idea how to solve this problem, I tried the following

    • Relocation complete of all the Adobe products Adobe CC
    • Delete the files from the OOBE folder to support the App while connected to and everything is not connected.
    • Delete the *.db CoreSync CoreSync folder under Adobe Application Support, while connected and not connected.
    • By logging on the user account in CC and signature as someone else.
    • By logging on the user account, restart the PC, reconsignation account of the user.
    • Restart the PC.

    I'm so many ideas!

    Help, please!

    Hey everyone, super happy, I've been working on a solution, so if someone comes through the solution for me was as follows:

    First, navigate to /Users/and make sure it is only a folder named 'My Creative Cloud Files', you will see they are wearing the insignia of the CC library, if there is more than one of them, close all adobe programs, sign enforcement office CC, delete ALL the files (after you save anything inside their first) and sign up again on the desktop CC application.

    Then, go to Preferences, system, network, , advanced..., proxies and add 'localhost' to the bypass the proxy for these areas of host settings &

    Revive your InDesign and I was all ready to go.

Maybe you are looking for