Is there a way to batch change tags in folders?

I am cleaning up from a data loss in one of my external HDD that held my photos.  I am trying to add tags to the recovered photos and was wondering if there was an easier way to do this other than selecting one photo at a time and adding the tag.  When I shift click on more than one item and then get info, all of the selected items widows open up individually.  Is there a way to enter the tag info once and have it applied to all selected items?  Heck, Im not even
one quarter of the way finished yet with a long way to go.  Help of any kind would be appreciated.
          Geno

What sort of tag are you wanting to add. 
Are you going to use iPhoto to manage those photos. If you you an batch add keywords, descriptions and titles to the photos. Those metadata can be written to the image file if you need to use them outside of iPhoto. 
If you're referring to tags for the files then you'll have to use a 3rd party app.  Go to MacUpdate.com and search for "tag files" or something similar to see what comes up.

Similar Messages

  • Is there a way to batch change titles in new Photo app

    I often used the "batch change " facility in iPhoto but there does not appear to be a similar facility in the new Photos app. Any ideas please?

    No
    Tell Apple you need it
    LN

  • Is there any way to batch change resolution, but not pixel dimensions?

    I was changing the resolution of my digital photos from 180 to 300 ppi individually as I edited them, but sometimes I would forget. Since I need the higher resolution for printing, I decided to automate that step by using PSE's "Process Multiple Files" feature. I noted that the Resolution selection was grayed out until I checkmarked "Resize Images." Since I didn't want to change the number of pixels, I left those fields blank.
    When I started the automated processing I noticed it was terribly slow, so I cancelled it and looked at the resulting files. They had more than doubled in file size because PSE was nearly doubling the Pixel Dimensions! I don't want to try a work-around by "resizing" to the current pixel dimensions, because the processing still takes about 45 seconds per file, and if I've cropped the photos, the pixel dimensions vary. Is there an automated way to change only the resolution in PSE . . . quickly?
    Also, I really wanted to double the resolution from 180 ppi to 360 ppi, but PSE limits my choices to either 600 or 300 or less. I've read about Scripts, but I don't think PSE supports them. I have version 6.
    Thanks for some help.

    Thanks for your input, and you may be right, but I'm not sure. I'm still trying to figure this out. I know it's the same photo on my monitor, but I keep reading that print resolution (ppi) is different from pixel resolution (i.e. 2000x3000.) This is my situation-- I'm sending the photos to a publisher for printing in a book. The publisher did not specify a size in inches--in fact I think the photos will be different sizes when printed on the page. They told me to send the photos in at 1600x1200 pixels. I've heard that 300 ppi is the standard resolution for publishing, so to get decent quality printing of my photos I thought I should increase the resolution from 180 to 300. But thinking about the different sizes, it seems that the resolution (ppi) will change depending on the size the photo is actually printed. At 300 ppi, a 1600x1200 photo will be printed at size 5.333" X 4". If a photo is printed full bleed on the cover of the book that is 8" x 10.667", then it will be 150 ppi. So, I guess you are right that I don't need to worry about the ppi resolution for the book photos.
    Now, let me figure about what I need to print my own 4x6 photos. My digital camera was set to 16x9 jpg, so my workflow is to make PNG copies to work with and after editing, save them in the 16x9 format before cropping at 1600x1200 pixels, then sharpening before doing Save As jpg in Book folder. I was thinking I needed to change the resolution to 300 ppi when saving in the 16x9 format so if I want to later make 4x6 prints, I'll have good quality prints. But you have made me think a little harder--what I do is choose the 4x6 crop tool which takes care of whatever ppi resolution is needed for that size print. Oh good, you have saved me extra work. Thanks!
    (BTW, I choose the 16x9 format because I was planning to use the photos in a widescreen slideshow, but my husband wanted something he could hold in his hand--hence, the book . . . and a lot of cropping!)

  • Is there a way to "batch" change the KB of a group of photos in iphoto?

    without having to go into photoshop and doing this individually with each image?

    You change the jpeg quality of an image (or the Kb) when exporting from iPhoto. You can export - and change the quality - in batches.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • In Photoshop Elements 12, is there a way to batch process all photos in a file with 'Auto Tone' and save the changes?

    In Photoshop Elements 12, is there a way to batch process all photos in a file with 'Auto Tone' and save the changes?

    Thank you, that was perfect!
    Yoni

  • Is there a way to force the Tag Engine to dump its input buffer to the database?

    I have an application where I start a process and log the data, and then call a subVI that uses the Read Historical Trend VIs to get all of the data from when the process started until now. The problem is that the Historical Trend VIs only read from the database on disk, and the Tag Engine's buffer doesn't write to disk until it's full (or possibly times out; I'm not sure about that, though). Is there a way to force the Tag Engine to write to disk, so that the Historical Trend VIs will return the most recent data?
    Shrinking the buffer will help a little, but that will only result in missing less of the most recent data. One possible hack is to have a dummy tag that I simply write enou
    gh data to that will cause the buffer to be written to the database. I was hoping for something more elegant, though.

    That's a good question.
    The control about the datalogging and the DSC Engine is all done (more or less) automatically - you feel the NI ease-of-use idea
    That means the Citadel service (one of the NI Services installed by LabVIEW DSC) is responsible of taking care about the datahandling (writing to and reading from the database files including caching some data e.g. index files, frequently used data...).
    The DSC Engine makes a request to the Citadel service that this data has to be logged. Everything else is handled by the Citadel service. Internally, there are two kinds of logging periods handled through the Citadel service. One for traces being viewed (a small period: 200ms) and one for traces not being viewed (slow (big) log period: 20000ms). That
    means, if Citadel gets a request to store a value it will buffer it and store it as soon as possible depending on other circumstances. One depends on the fact if this trace data is being viewed (e.g. with Read Histroical Trend.vi) If you request/read to view a trace you should pretty much see the current values because citadel should use the fast log period.
    The Citadel service takes care as well about setting priorities e.g. the writes before the reads (We don't want to loose data - right?). That means if you really stuff the system by writing a lot of data the CPU might get overloaded and the reads will happen less often.
    If you really want to see "real-time" data I would recommend to use the "Trend Tags.vi". With this approach you avoid the chain DSCEngine-Output Buffer-CitadelService-InputBuffer-File-HD... and back.
    I hope this info helps.
    Roland
    PS: I've attached a simple VI that has a tip (workaround) in it which might do what you are looking for... However, Nationa
    l Instruments cannot support this offically because the VI being used are internally DSC VIs that certainly change in the next version of LV DSC... and therefore you would need to "re-factor" your application.
    Attachments:
    BenchReadHistTrend.llb ‏104 KB

  • Is there a way to create editable tags in a dashboard section?

    Is there a way to create editable tags in a dashboard section?
    The requirement is - User should be able to enter comments in a edit box for a section in a dashboard and save it. For other users, this should show up as a non-editable comment while for the user it should be editable box.
    Example: In a report in a section on dashboard for Supplier Trends, a Purchase Manager should enter the commments -" This weeks trends show no issues. Next week watch out for supplier X". For everyone other than him, this should show up as comments.
    1. Is there a way to achieve this functionality?
    2. Can this be achived using write back option?
    3. Or will this require java scripting?
    Thanks

    Hi,
    If you want to have a better experience of your music files, how about just use WMP to enjoy all the songs, you can
    sort by Artists or Album or whatever you like. There, you can have a better and easier way to organize all your music
    files.
    For Windows Explorer, did you mean
    medium size icons in artist, while list icon in albums, you can just organize as you want like the following screenshot.
    If I'm missing something, please free contact me.
    Regards
    Yolanda
    TechNet Community Support

  • Is there a way of just changing the text to the main menu..but not the submenus?

    Is there a way of just changing the text to the main
    menu..but not the submenus?
    Also i have looked at in the browser and when i glide over
    the menu catergories or click on them they dont show the
    submenu...what can i do to solve this?

    Does the example described at
    http://labs.adobe.com/technologies/spry/articles/menu_bar/index.html
    work for you?
    What are you doing that's different from the example?
    When you say you just want to change the text of the main
    menu without changing the submenus, do you mean you want to do so
    dynamically, at some later stage after the page has loaded?
    If so, you could try retrieving the main menu elements you
    want to update from the DOM and updating them from your script's
    event handler for whatever event it is that you want to update them
    in response to. This presumes the widget will detect this and
    update appropriately, which I can't say for sure since I haven't
    actually tried it.
    Hope that helps!
    Rob

  • Hi, I got a new iPhone that I havent uploaded to my iTunes yet I had pictures and contacts. I accidentally said to restore it as my old iTouch. Is there a way I can change it back to my old iPhone and get my pictures and contacts back? Thank you

    Hi, I got a new iPhone that I havent uploaded to my iTunes yet I had pictures and contacts. I accidentally said to restore it as my old iTouch. Is there a way I can change it back to my old iPhone and get my pictures and contacts back?

    You would need to check if you made a back up of the iPhone on iTunes/iCloud before you restored from the ipod touch back up. If there isnt then im sorry that data is gone.

  • I edit my photos in Photoshop, save as jpeg then import back into iPhoto.  But if I add text to an image in Photoshop can't save as jpeg but as psd. Is there any way I can change to jpeg in iPhoto?

    I edit my RAW photos in Photoschop CS3, save as jpeg then import back into iPhoto 11.  If I add text in Photoshop I can't save as jpeg but as psd.  Is there any way I can change to jpeg in iPhoto?

    Terence Devlin wrote:
    Yes you can. But you need to flatten it as jpeg doesn't support layers.
    While the final JPEG can't have layers, it is not necessary to flatten the original Photoshop file to create a JPEG. There are two ways to make a JPEG while not losing the flexibility of preserving layers, and they both flatten on the fly while saving.
    I just tried this in Photoshop CS3 myself. When I add a text layer, and choose Save, the Save As dialog box comes up and defaults to PSD as was described. But... that is just the default! Go ahead and choose JPEG from the Format pop-up menu down below the file list. JPEG is in there. So what happens to the layers? Notice when you choose JPEG, the Layers box grays out and the "As A Copy" box grays out and is checked (i.e. you cannot uncheck it). What is going on here is Photoshop will gladly make a JPEG of your layered file, but it will force the JPEG to be a copy, so as to not overwrite the original layered file. This is good, because your Photoshop file with its editable text layer is preserved, and you get a JPEG copy to put in iPhoto.
    The second way is, instead of doing Save or Save As, choose File/Save for Web and Devices. This will also give you a JPEG choice, and also create an exported copy. Because this way makes files for the Web, they will be smaller than JPEGs from Save As because they will lack built-in previews (which you don't really need these days) and other extra metadata that take up space.
    Either way you get a JPEG you can toss back into iPhoto.
    Terence Devlin wrote:
    Only by exporting.
    The Export menu in Photoshop CS3 does not have any direct choices for JPEG.

  • Is there a way to find/change the font of numericals only, within a document in indesign?

    Is there a way to find/change the font of numericals only, within a document in indesign?

    It might not be what you need for this document, but if you were creating it from scratch, a GREP style would probably be the way to go. That way,  new figures added to the text will  automatically be styled the way you like.
    Start with a base Paragraph Style (i.e. 'Body') that all subsequent styles ('Heading' etc) are based on. Select a figure, and apply the font and any other attributes required. Select it and make a new Character Style. In your Paragraph Style, go to GREP Styles, and set it to apply the Character Style to the 'Any Digit' Wildcard.

  • Is there a way to restrict changing the browsing history in safari with ought restricting the entire application?

    Is there a way to restrict changing the browsing history in safari with ought restricting the entire application?

    For the iPod touch in your profile?
    Private browsing help here >  iOS:  Safari web settings
    For Safari for Mac OS X ...
    From your Safari menu bar click Safari > Private Browsing
    You can only block all history in Private Browsing, pages you visit, and autofill.

  • Is there any way I can change my apple I'd from english to canadian

    Is there any way I can change my apple ID from English to Canadian

    Meaning UK to Canadian?
    You need to change the address associated with your Apple ID to a Canadian address.
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    For making purchases you will need to change the country that your ID is associated with in the iTunes app. Log into your account and chnage the country. You will need to supply a Canadian bank card and the local Canadian billing address.

  • Is there a way you can change your app locations on iTunes?

    It's tedious when trying to drag an app that you really like past 4 'pages' of apps to the 1st page.

    HI,
    Is there a way you can change your app locations on iTunes?
    Yes. Connect your iPhone to your computer, launch iTunes. Select your iPhone under Devices on the left. Select "Apps" in the menu. You can drag apps to any of the home screens you want, then click: Apply bottom right corner of the iTunes window.
    Carolyn

  • If I ordered the iPhone 5s in space gray, is there any way I could change the color to silver??

    If I ordered the iPhone 5s in space gray, is there any way I could change the color to silver??

    Call Apple and ask.  If they have not shipped yet due to backlog, perhaps.  If they did ship already, return without opening and wait for silver model to be shipped back to you.

Maybe you are looking for

  • How can i make RealPlayer the default video player?

    I use safari 3.0.4 When it accesses sites containing video, it plays it in Flash (eg YouTube) How do I get safari to use realplayer instead? (Even my Firefox 2.0 uses flash) (I have RP 10) I am teaching a course in media literacy and show some of the

  • Lync 2013 Client install failure

    Hi We're having trouble installing the Lync 2013 standalone client via SCCM on a couple of PCs.  It is installing with no problem on most PCs.   However, on some PCs, it installs and when you launch it you get the message... "Microsoft Lync has stopp

  • Custom components and binding ... help !!

    hi, i have created a component that wraps the TextInput control with its own set and get text methods, but it does not work well with the Binding mechanism. here is the code: <vc:myTextInput text="{str}" y="8" tabIndex="0" x="100" id="in1"/> and the

  • How do I disable message determination for POs?

    Hi experts, I want to use the Standard PO-migration program in the SPRO (RM06EEI0), for which I need to disable message determination for POs on the target system. What would be the easiest way to disable message determination? Thanks!

  • Login Items wont stay removed

    Hello People, My First post on here so please be kind I a running OS 10.6.2 on a Macbook Pro. I had set up some login items on my user account which work fine. However i would like to remove 1 of the items which it does but then if i log out and back