Save XMP file for an entire folder?

I have my automatic XMP saving turned off. Now I want to selectively be able to save my XMP files as needed. I thought that I used to be able to save the XMP files for all the photos in a folder at once. however, now it seems that I can only save the XMP file for only the actively viewed photo (regardless of how many in the folder are actually selected). Does anyone know how to do this?
(Aslo, what happens when there are mixed JPG and RAW files selected when I want to save the XMP data?)
Thanks,
Nick

Nick,
CRTL+A will select all photos in a folder. The CRTL+S will do the xmp writing for all photos that need it. It goes pretty quickly. You can watch the progress bar in the upper left.
Mel

Similar Messages

  • How to copy a files name and spotlight comments to a text file for an entire folder

    I have movie covers saved as a jpeg for every movie my family and I own. There is about 700 and they each have a comment of the main actors, release dates, and descriptions. This makes it easy to find what to watch. I want my parents to have all of this info but they have a windows laptop so the comments don't transfer with the file and can't be searched like you can on a mac. Is there an applescript, automator, program I can download,  or program code supported in xcode that will do at least one of the following things?
    1)Take the name of the picture file and spotlight comment, copy and paste it into a text document like word that looks like this...
    File Name1- Spotlight Comment for file 1
    File Name 2- Spotlight Comment for file 2
    . for all 700 files in a folder
    2) It would be equally helpful if there was something that would take the name of the picture file and spotlight comment, copy and paste it to a movie file's comments with the same name but obviously has different extention. For an example
    In a Pictures folder
    Name: Dark Knight, The.jpeg       Comment: (2008) Genre: Action...             <- copy comment
    In a Movie Folder
    Name: Dark Knight, The.m4v       Comment:                                               <- paste 
    and do this for all 700 files
    3) Is there a free photo program that works on mac and windows that I can put all my movie pictures in and have a description like I did with the comments? It would also need a place that to search the description for keywords. So Basically an itunes for pictures that works on both mac and windows. If so I still need a way to get the spotlight comments to the description.
    4) I feel like this would make things more difficult, but if not I can put all of the .m4v files in itunes so instead of pasting all the comments back into a file in finder paste them in a description in itunes
    5) At the very least a code that I can run one by one for every file that will paste the comments into the same document
    Note: When I say spotlight comments I mean the comment box that is available when you click on get info of a file. The pictures are in the pictures section of finder in a folder called Movie Pictures. The movie files are on an external hard-drive in a file called Movies. Also I am slightly familiar with applescript and automater in that I have used both to create keyboard shortcuts and simple voice commands. I have programmed in c++ and C too. So If you give me a code for applescript I do know what to do with it.
    Thanks to anyone who takes the time to read all of this and extra thanks to anyone who tries to help.

    Clendenen02 wrote:
    2) It would be equally helpful if there was something that would take the name of the picture file and spotlight comment, copy and paste it to a movie file's comments with the same name but obviously has different extention. For an example
    In a Pictures folder
    Name: Dark Knight, The.jpeg       Comment: (2008) Genre: Action...             <- copy comment
    In a Movie Folder
    Name: Dark Knight, The.m4v       Comment:                                               <- paste 
    and do this for all 700 files
    This Bash script will do it.
    Edit "PicDir" and "MovDir" to the location of your Folders
    (Note: The comment is written to the m4v file using xattr, so the Spotlight comment field appears blank in Finder, but the comment metadata is still indexed by Spotlight (If you add a Spotlight comment from Finder, it is stored both as an extended attribute and in a .DS_Store file)
    #!/bin/bash
    PicDir=$HOME/Desktop/Pictures
    MovDir=$HOME/Desktop/Movies
    for f in $PicDir/*
    do
         if [ ! -d "$f" -a "${f##*.}" == "jpeg" ]; then
              comment=$(mdls -raw -name kMDItemFinderComment "$f")
              if [[ $comment != "(null)" ]]; then
                   picname=${f##*/}
                   movname=${picname%.*}.m4v
                   if [ -e "$MovDir"/$movname ]; then
                         xattr -w com.apple.metadata:kMDItemFinderComment "\"$comment\"" "$MovDir"/$movname
                   fi
              fi
         fi
    done

  • How can I save a file in the Downloads folder and automatically have it opened?

    Often, I'd like to download a file, save it to my Downlaods folder and have it opened right away.
    Currently, you can only decide between the two options "open" or "save to...". There's seemlingly no way Firefox can do both at once.
    I know I can download it, open the downloads manager and open it manually. But when working with over a dozen documents a day, that doesn't quite do the trick.
    In Chrome, you only have to click twice: Once for downloading and once for opening it from the download bar on the bottom of the screen. You do not have to open a download manager.

    Yeah, thanks but that's not what I was trying to ask.
    I know that you can save and open a document by performing these three steps:
    1. Confirming to save a file to the Downloads folder
    2. Open the download manager by clicking the temporarily green arrow
    3. Clicking on the downloaded file
    What I would like to know is whether or not it is possible to have Firefox open a saved file ''automatically''. At the moment, if I choose to open it automatically, it is only saved to my temp folder.
    It would be great though if it was saved to my Downloads folder ''and'' opened with the respective program on my pc. Is there a way to do this?

  • When I try to save a file to an existing folder in Acrobat X Pro, none of my folder names are visible.

    When I try to save a file to an existing folder, the folder icons are there, but no folder names. I have to manually click on each one to find the folder I'm looking for. I've had this issue for months. Any suggestions?

    Thanks, Bill. Here's what I get when I try to "save as"

  • Help creating custom XMP file for Photoshop CS5

    I was wondering if there is anyone out there that would be willing to help me create a custom XMP file for Photoshop CS5. What I need is very simple, I really just don't know how to go about creating it myself.
    Feel free to email me at [email protected]

    Hi Robert,
    please have a look at the "Generic Panel" example of the File Info SDK.
    Using that you only need to create a simple XML-file to create a simple custom panel.
    -- Stefan Makswit

  • How to change the path for a file download? Sometimes, I want to save a file in a specific folder in my hard disc and I don't know how to do it. Thanks.

    There is a default folder for the download of files from the internet ("Descargas" or "Downloads"). But, what can I do if I wish to save the file in another location of the hard disk?
    Thank you.

    Use about:config and filter on browser.download, you'll see them
    '''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config (entries)] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config (How to change)]

  • Performing a Find/Replace for an entire Folder of html files

    Hello,
    I have been working away on adding an include to my html pages and getting the code all set up for a header and footer. With lots of help from kind people on this forum I finally have it working!
    Now I want to add this to an entire folder of 500 or so HTML pages.
    Can someone walk me through how to do this?
    I also want to eliminate some stupid code that I put in years ago to prevent right clicking.
    Perhaps this is a multi step job? First get rid of old code. Then add new header. Then add new footer???
    Here is the fully functioning page with the new code:
    http://www.glennbartley.com/naturephotography/birds/ACORN%20WOODPECKER.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>ACORN WOODPECKER</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#000000" text="#CCCCCC" link="#CCCCCC" vlink="#CCCCCC" alink="#999999">
    <div align="center">
    <?php $filepath = $_SERVER['DOCUMENT_ROOT'] . '/naturephotography/Header-Test.html'; include($filepath); ?>
    </div>
    <h1 align="center"><strong><font color="#999999" size="5" face="Arial Narrow">ACORN WOODPECKER</font></strong></h1>
    <p align="center"><font color="#009900" face="Arial, Helvetica, sans-serif"><strong>NORTH AMERICA</strong></font></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 01.jpg" alt="Acorn Woodpecker" width="530" height="775"> </p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 02.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 03.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 04.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 05.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 06.jpg" alt="Acorn Woodpecker" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 07.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/Acorn Woodpecker - 08.jpg" alt="Acorn Woodpecker" width="530" height="775"></p>
    <div align="center"><?php $filepath = $_SERVER['DOCUMENT_ROOT'] . '/naturephotography/Footer-Test.html'; include($filepath); ?>
    </div>
    </body>
    </html>
    And an example of one of the existing pages:
    http://www.glennbartley.com/naturephotography/birds/COMMON%20LOON.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <!-- prevent right-click -->
    <SCRIPT LANGUAGE='JavaScript' type='text/javascript' >
    <!--
    document.oncontextmenu = function(){return false}
    if(document.layers) {
    window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown = function(e){
    if(e.target==document)return false;
    else {
    document.onmousedown = function(){return false}
    //-->
    </SCRIPT>
    <title>COMMON LOON</title>
    <meta name="description" content="Photographs of Common Loon in Ontario. Nature Wildlife and Landscape Photography. Bird Photography">
    <meta name="keywords" content="Loon, Common Loon, bird photography, birds of Ontario, nature photography">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#000000" text="#CCCCCC" link="#CCCCCC" vlink="#CCCCCC" alink="#999999">
    <h1 align="center"><font color="#999999" size="5" face="Arial Narrow"><strong>COMMON
      LOON</strong></font></h1>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 19.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 20.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 21.jpg" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 22.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 23.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 24.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 53.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 54.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 55.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 56.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 57.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/UPDATE - NOV 2012/NORTH AMERICA/Common Loon - 58.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 25.jpg" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 26.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 27.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 28.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 29.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 30.jpg" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 31.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 32.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 33.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 34.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 35.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 36.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 37.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 38.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 39.jpg" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 40.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 41.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 42.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 43.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 44.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 45.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 46.jpg" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 47.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 48.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 49.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 50.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 51.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/_Update - Aug 24, 2011/Common Loon - 52.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 01.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 14.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 11.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 02.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 03.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 04.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 05.jpg" width="1010" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 06.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 07.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 08.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 09.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 10.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 12.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 13.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/Common Loon - 15.jpg" width="775" height="530"></p>
    </body>
    </html>

    Hello,
    Thank you for the info. I did as you described and it worked like a charm.
    I have removed the old code and added in teh header.
    I'm kind of stumped as to how to put in the footer though as there isnt really anything to "find"?
    How can I replace something at the very end of the document??
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>AMERICAN AVOCET</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#000000" text="#CCCCCC" link="#CCCCCC" vlink="#CCCCCC" alink="#999999">
    <div align="center">
    <?php $filepath = $_SERVER['DOCUMENT_ROOT'] . '/naturephotography/Header-Test.html'; include($filepath); ?>
    </div>
    <h1 align="center"><font color="#999999" size="5" face="Arial Narrow"><strong>AMERICAN
      AVOCET</strong></font></h1>
    <p align="center"><img src="../GB Collection/American Avocet - 21.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet - 22.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet - 23.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet - 18.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet - 19.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet - 20.jpg" alt="American Avocet Image" width="530" height="775"></p>
    <p align="center"><img src="../GB Collection/American Avocet-11.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-12.jpg" alt="American Avocet Image" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-09.jpg" alt="AMERICAN AVOCET" name="Avocet" width="775" height="530" id="Avocet"></p>
    <p align="center"><img src="../GB Collection/American Avocet-17.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-16.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB%20Collection/Avocet%20-%20CRW_5390-02.jpg" width="775" height="530">
    </p>
    <p align="center"><img src="../GB Collection/American Avocet-15.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-14.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-13.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-10.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-08.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-07.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-06.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-05.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-04.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-03.jpg" width="775" height="530"></p>
    <p align="center"><img src="../GB Collection/American Avocet-02.jpg" width="775" height="530"></p>
    <p align="center">  </p>
    <p align="center">  </p>
    </body>
    </html>

  • How do I save my files to the correct folder?

    When I try to save a file, it gives me the basic locations (desktop, documents, my files, idisk, etc., but if I want the file in a folder in documents, I can't get deep enough to highlight the file. It won't go farther than the documents folder. Is there a setting that I can change this? It is lame if I have to save a document to the desktop so I can find it, just to move it to the correct file that I want it in. Thanks for any help in advance.

    Next to the field in the Save window where you enter the file name, there's a little rounded box with a down-pointing arrow.  Click that to show a full file browser that lets you navigate the entire file system.

  • Encore file overwriting an entire folder?

    I had an interesting little snafu. I opened up Encore (while Premiere was open) and while saving a newly created Encore file for a video project I inadvertently saved the Encore file as the same name as the video folder that housed my entire Premiere project. Encore without asking if I want to overwrite this folder completely overwrote an entire folder. The folder and files that were there are now gone. When I went back to Premiere all of the media was gone... How is this possible? Is there anyway to retrieve my work. I have a back-up on another drive but the last back up was about 8 hours of work ago... Anyone else have this isue? A fluke? I will have only lost 8 hours of work but that still sucks... It could be worse I guess... Anyone?

    Mac or PC?
    I was able to duplicate the overwriting of files on a PC using En CS5, but only if I forced the file name to include the .ncor extension.  When I tried to name the file the same as the folder, without explicitly adding the file extension, the Save As dialog opened the existing folder and continued to prompt me for a file name.  The newly saved file/folder combo for the En project was then saved *inside* of the existing folder with the same name, and no overwrite occurred.
    Regardless, this is very bad behavior by En.
    -Jeff

  • Camera Raw 6.7 does not save XMP files

    I am running Camera Raw 6.7 on a Windows XP machine.
    In the Preferences under "General" I have the "Save image settings in" set to "Sidecar ".xmp" files.
    And in the DNG File Handling, I do NOT have the "Ignore sidecar ".xmp." file check-box checked in.
    But still when I alter a raw file and press Done the DNG file changes date/size and no XMP-file is
    created in the directory. Also when Ioad the picture and "reset" it to "Camera Raw Default" and
    press Done, the next time I open it is in the "Image settings" state anyway
    Anyone have any idea what the problem could be ?
    Regards,
    Klas

    Noel Carboni wrote:
    Adobe has taken the decision to ALWAYS write metadata into file types they know the structure of.
    Personally I find this approach apalling...
    And you were accused of being an Adobe "fan-boy" only hours ago...
    +1 vote for sidecar option - all file types...

  • XMP files for non RAW files **PLEASE!!**

    This is useless if I cannot write the image adjustments that I make out to matching XMP files.
    How can I move files/folders between machines???
    So PLEASE add XMP sidecar file support for non RAW formats.
    OR give us the ability to "export" a folder or files.. like in Aperture.

    Lee Jay,
    Thanks for that info!
    Since I did not see the XMP files I assumed...
    I just did a test and sure enough, the XMP data is written into the JPG file!
    On my mac I copied the file to another name, imported it and the changes were there as well as the ability to modify the changes.
    Further, for the geeks like me, I did a
    "strings file.jpg | more"
    command and was able to see the XMP data.
    Thanks!
    Edit to add: This is even better than Aperture projects and even separate XMP files!

  • Avoid to cache(save) swf files to temporary internet folder

    Hello eveerybody,
    Everybody said it is impossible to do this, but this site
    http://www.kroketes.gr/gr.html doesn't save swf files
    into the temporary internet folder.
    Does sombody know how it is working?
    Please help.
    Thanks.

    Hello sotoodeh,
    it's nonsense, sorry but this site will be cached normally
    e.g. by a firerfox browser. Maybe you are not aware, that there
    maybe, more than one temporary internet files directory on your
    system?
    Just go again on this page, then search for start.swf on your
    system. If you don't find it, than the fact that your system did
    not cache the swf has nothing to do with the coding of the page but
    your own system or browser properties...
    There is absolutely nothing that prevents caching on this
    site... the best way to prevent a browser to load content from
    cache is to use a dynamic changing url, something like
    http://mysite.com/flash.php?id=2&random=2385632873...
    If you have something like this random value in the url, you
    can force a browser to load everything again from the site and not
    from cache... that's the best way I know to prevent LOADING from
    cache, not caching itself... there are also meta tags for caching,
    but it depends on the browsers settings if it follows meta
    instructions like this...

  • No xmp files for jpeg

    I moved my photo files onto an external hard disk and ever since LR is not creating any xmp files anymore for jpegs. it still does for RAW files.
    > automatically write changes into xmp is checked
    > i tried manual export, it does it for RAW but not for jpeg. both files are in the same folder
    > i tried with new database and new installation of LR... same results
    > there is action when i do manual export but no files show up
    anybody has same problem or a solution to it?

    and here the xmp (first part) of a jpeg taken with a nikon coolpix 950<br /><br /><x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Toolkit 3.3-016, build -num-, -date-"><br /> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><br />  <rdf:Description rdf:about=""<br />    xmlns:tiff="http://ns.adobe.com/tiff/1.0/"><br />   <tiff:Make>NIKON</tiff:Make><br />   <tiff:Model>E990</tiff:Model><br />   <tiff:Orientation>1</tiff:Orientation><br />   <tiff:ImageWidth>1360</tiff:ImageWidth><br />   <tiff:ImageLength>2048</tiff:ImageLength><br /><br />the coolpix does not shoot raw....

  • External xmp file for JPEG

    Hi,
    Is there any possibility to save develop settings for JPEG file into external XMP file - not inside JPEG?
    It is confusing for all backup software. Backup system have to transfer all modified JPEG files - not lightweight xmp files. Moreover, modification date of original JPEG file changes. I would like to have all my original JPEG files untouched as RAW files.
    Thanks for suggestions
    Sebastian

    ksebman wrote:
    My backup software transfers files through the Internet. So if I make small changes to hundreds of files, I have to transfer all JPEGs which are relatively huge. It takes a long time. External xmp file would be better because of its textual nature and size. Moreover I would like to have original files, not modified by any software (even if image data is untouched). I do like the way how RAW files are handled - no modifications at all.
    I know, there are people who like having metadata in JPEG files because they use other applications. Searching through the Internet I found that there is a lot of people who decide not to use LR from that reason (modified original JPEG file). They set read-only attribute for all JPEGs to prevent this behavior.
    It's really inconvenient - possibility to save external XMP file as in RAW files would be very helpful.
    Best Regards
    Sebastian
    You do not need to back up all those JPEGs after each change. Back them up once at the start, and then back up the lrcat file (maybe zipped) routinely. This means both the original image data and all your editing work are backed up, and you could reconstruct your picture collection perfectly from your backup. The sidecar-based backup scheme would mean that all your work wouldn't be backed up (or you'd be forced to avoid a range of Lightroom features).
    It's a wrong-headed reason to avoid LR. XMP is not written into proprietary raw files because Adobe consider it too risky. With JPEGs, it isn't - and if you are worried, just backup a virgin JPEG immediately after importing them.
    John

  • URGENT--Need to supress "Do you want to Open or save this file" for (CSV AND DOC FILES) in IE 8, IE 9 on Win XP and Win 7

    Hi 
    In our Task in Salesforce we generate one CSV file and one doc file after one button click on salesforce screen. we need to download these two documents without the popup message "Do you want to Open or save this file"
    Pls suggest Registry Edit Option Or any IE browser configuration or any
    code to get rid of this popup as this is very critical for our Task. 
    Thanks
    Kartik

    Thanks Alex... I saw this in another Forum and could you pls let me know if this works...that is there is no prompt on CSV download
    Begin in: HKEY_LOCAL_MACHINE - to change settings for all users
    HKEY_CURRENT_USER- to change settings for the current user
    Then browse to Software->Microsoft->Internet Explorer->Main->FeatureControl->Feature_Restrict_File_Download
    And then set the Value iexplore.exe to 0. If it doesn't exist: Create it (DWORD). 
    Thanks
    Kartik

Maybe you are looking for