Copy and paste metadata

I'd like to be able to copy and paste metadata from one to many. I envisage it as a process similar to copying and pasting Adobe Camera Raw settings, with a Paste Special style dialog. Camera EXIF data would be excluded, but you'd be choose to paste just the keywords, or the keywords and the description etc.
While you can always save a metadata template, that's not ideal for routine work. And you have to edit a metadata template manually before risking applying it to other images.
John

You could modify the code to suit as an example I have added Description to Keywords
This just appends the description, if you want to replace uncomment the marked line..
#target bridge
DataCopy();
function DataCopy(){
var SP = new TabbedPalette( app.document, "Copy MetaData", "CMtab", "script", "left", "top");
SP.content.onResize = function(){
  var b = this.bounds;
  pnl.bounds = b;
  this.layout.resize(true);
  SP.content.layout.layout(true);
    Keywords=[];
    Description =[];
    Title=[];
    Headline='';
var pnl = SP.content.add("panel", undefined , "");
pnl.alignChildren = ["center", "fill"];
var mainBtnGp = pnl.add("group");
mainBtnGp.orientation = "column";
var titleGp = mainBtnGp.add("group");
titleGp.alignment ="column";
var title = titleGp.add("statictext", undefined, "Copy/Paste Metadata");
var g = title.graphics;
g.font = ScriptUI.newFont ("Arial", 14);
    var gp2 = mainBtnGp.add("group");
gp2.p1 = gp2.add('panel');
     gp2a = gp2.p1.add('group');
    gp2a.orientation = "column";
gp2a.alignment ="left";
    gp2a.cb1 = gp2a.add("checkbox",undefined,'Key Words');
    gp2a.cb2 = gp2a.add("checkbox",undefined,'Description');
    gp2a.cb3 = gp2a.add("checkbox",undefined,'Title');
    gp2a.cb4 =gp2a.add("checkbox",undefined,'Headline');
    gp2a.cb5 =gp2a.add("checkbox",undefined,'Desc to Key Words');
    gp2b = gp2.p1.add('group');
    gp2b.orientation = "column";
gp2b.alignment = "fill"
    gp2b.bu1 = gp2b.add('button',undefined,'Select Data');
     gp2b.bu2 = gp2b.add('button',undefined,'Reset');
     gp2b.bu2.onClick = function(){
     Keywords=[];
     Description=[];
     Title=[];
     Headline='';
     gp2a.cb1.value  = false;
     gp2a.cb2.value  = false;
     gp2a.cb3.value  = false;
     gp2a.cb4.value  = false;
     gp2a.cb5.value  = false;
    gp2b.bu1.onClick = function(){
        var dat = false;
        if(gp2a.cb1.value) dat = true;
        if(gp2a.cb2.value) dat = true;
        if(gp2a.cb3.value) dat = true;
        if(gp2a.cb4.value) dat = true;
        if(gp2a.cb5.value) dat = true;
        if(!dat) {
            alert("Please select at least one checkbox");
            return;
        loadXMPLib();
        var thumb = app.document.selections[0];
if(!app.document.selections.length) return;
    if(thumb.type != "file") return;
var selectedFile = thumb.spec;   
var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_READ);
myXmp = myXmpFile.getXMP();
try{
if(gp2a.cb1.value){
Keywords = getArrayItems(XMPConst.NS_DC,'subject');
if(gp2a.cb2.value){
Description =  getArrayItems(XMPConst.NS_DC, "description");
if(gp2a.cb3.value){
Title = getArrayItems(XMPConst.NS_DC, "title");
if(gp2a.cb4.value){
Headline =  "\"" + myXmp.getProperty(XMPConst.NS_PHOTOSHOP, "Headline") + "\"";
Headline=Headline.replace(/\"/g,'');
if(gp2a.cb5.value){
Description =  getArrayItems(XMPConst.NS_DC, "description").toString().replace(/\r|\n/g,'');
unloadXMPLib();
}catch(e){alert(e +" Line: "+ e.line);}
gp2b.bu3 = gp2b.add('button',undefined,'Use Metadata');
gp2b.bu3.onClick = function(){
var sels = app.document.selections;
loadXMPLib();
for (var a in sels){
var thumb = new Thumbnail(sels[a]);
   if(thumb.hasMetadata){
      var selectedFile = thumb.spec;   
      var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
  var myXmp = myXmpFile.getXMP();
        try{
        if(gp2a.cb1.value){
        myXmp.deleteProperty(XMPConst.NS_DC,'subject');
        for(var s in Keywords){
        myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Keywords[s], 0,XMPConst.PROP_IS_ARRAY);
    if(gp2a.cb2.value){
        myXmp.deleteProperty(XMPConst.NS_DC, "description");
        myXmp.setLocalizedText( XMPConst.NS_DC, "description", null, "x-default", Description );
    if(gp2a.cb3.value){
        myXmp.deleteProperty(XMPConst.NS_DC, "title");
        myXmp.appendArrayItem(XMPConst.NS_DC, "title", Title, 0, XMPConst.ALIAS_TO_ALT_TEXT);
        myXmp.setQualifier(XMPConst.NS_DC, "title[1]", "http://www.w3.org/XML/1998/namespace", "lang", "x-default");
    if(gp2a.cb4.value){
        myXmp.deleteProperty(XMPConst.NS_PHOTOSHOP, "Headline");
        myXmp.setProperty(XMPConst.NS_PHOTOSHOP, "Headline", Headline);
    if(gp2a.cb5.value){
        //uncomment the line below to remove all keywords before adding the description
       // myXmp.deleteProperty(XMPConst.NS_DC,'subject');
        myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Description, 0,XMPConst.PROP_IS_ARRAY);
    if (myXmpFile.canPutXMP(myXmp)) {
        myXmpFile.putXMP(myXmp);
         myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
    }catch(e){alert(e+" Line : "+e.line);}
    unloadXMPLib();
SP.content.layout.layout(true);
function getArrayItems(ns, prop){
var arrItem=[];
try{
var items = myXmp.countArrayItems(ns, prop);
   for(var i = 1;i <= items;i++){
     arrItem.push(myXmp.getArrayItem(ns, prop, i));
return arrItem;
}catch(e){alert(e +" Line: "+ e.line);}
function loadXMPLib(){
if (ExternalObject.AdobeXMPScript == undefined) {
    ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
function unloadXMPLib(){
   if( ExternalObject.AdobeXMPScript ) {
      try{
         ExternalObject.AdobeXMPScript.unload();
         ExternalObject.AdobeXMPScript = undefined;
      }catch (e){ }

Similar Messages

  • Shortcut-Bug in Bridge CS6 for Mac / Bridge cant' copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6, the shortcuts or copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work. Bridge CS6 and ACR 7 are very good and meet my expect ions or needs - it is too bad, that such a small thing is making working with the application a little bit annoying.
    It would be nice, if you could forward this to Adobe engineers that they can fix it.
    Thanks so much!

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the xmp file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the xmp file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6 copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work - it is too bad, that such a small thing is making working with the application a little bit annoying.

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Bridge cant' copy and paste metadata

    I have found a minor bug (most likely overlooked till now) in PS CS6 Beta.   when you open a folder of images in the new version of bridge and you got to the metadata.   You are not ablt to cut and paste info from one box to another like previous versions.  tell me, this will be fixed please.
    Aloha
    Sean
    P.S.  One more annoyance I have found is that your program will not allow me to place the App icons where I want on my dock bar (Mac OS 10.6.8)   I lke them to sit about 2/3rds across on the bar, but they keep putting themselves back to about a 1/3rd of the way across.     It's very annoying. I'd like to know if there is a way to stop this happening....

    I disagree Richard.      I was on CS4. It became corrupted. I couldn't find my discs and I could see that CS6 beta was already out, so I didn't want to buy CS5, knowing that 6 is coming out.  Now that is why I'm on CS6 Beta.    When  I was on CS4  my app icons would stay exactly where ever I put them.   It is definitely not the case with these new Bridge and PS CS6 icons.    3 times now, I've placed them 2/3rds along the dock and 3 times now it's repositioned them to about 1/3rd of the way along.   I've never seen any app's icons do this ever and I have not changed operating systems recently.   If you're interested in looking into it.  I have a Mac Pro  2 x 3 GHz Dual-Core Intel Xeon   running Mac OS 10.6.8 (snow leopard)   I'm just offering you guys these observations in the spirit of cooperation.     Maybe there is a hidden functionality on the doxk that this new version has activated...
    Aloha
    Sean

  • Using copy and paste in Adobe Bridge 5.0

    When using Adobe Bridge 5.0, and while adding metadata to photos, whenever I use the command control-C to copy and paste metadata entries, my software locks up and I have to reboot.  The last time this happened, I was told to clear my Cache, and that worked, but now I have cleared the cache several times and rebooted, and the software still locks up.

    Hi BOX697,
    I would suggest posting this question in the Adobe Bridge forum, located here: http://forums.adobe.com/community/bridge
    You will probably get a quicker answer there!
    Cheers,
    Michael

  • How do I copy and paste in Adobe Audition 2.0 and keep my markers and metadata?

    I'm trying to paste sections of sound file at the end of a different file, but when it pastes I lose all my markers and metadata which were saved on the original file. Does anyone know how I might copy the markers over as well? Would really appreciate some help! Thanks

    Unfortunately you cannot retain markers within a section that you copy and paste since any markers shown in an audio file in Waveform view only relate to the time on the timescale of that particular audio file. As soon as you copy a section of the audio and try and paste it into another file the marker positions no longer relate to the Timeline into which you are pasting them. Therefore they have to be discarded, I'm afraid.

  • Inherited metadata during copy and paste

    We maintain a large DAM of product images with extensive metadata applied (model numbers, size, color, origin, usage rights etc.) Often these individual product images are combined into a single "family" shot. But when you copy and paste from one photoshop file into another, the metadata does not carry along with it. Is there any way to allow for parent/child metadata relationships?

    oh boy
    I had the same issue with my E250 on Solaris 2.7
    running on Raptor card.
    what is the patch level u are using? .
    I had occassions were I had to upgrade my E250 box
    with Solaris 2.8 10/00 version and from the time i did
    that things are absolutely fine and one thing i would
    suggest is instead of double clicking your Sun Mouse
    button try using "Copy" > "Paste" tabs u will find
    on ur CDE terminal that should not freeze ur box
    Good luck
    Rajesh

  • I loaded iTunes on a new laptop. I copied and pasted my albums to a 4G stick and down loaded them to the new laptop. Placing them in, Libraries – Music – iTunes and than in Itunes used File – add file to library. So far so good. For what ever reason one o

    I loaded iTunes on a new laptop. I copied and pasted my albums to a 4G stick and down loaded them to the new laptop. Placing them in, Libraries – Music – iTunes and than in Itunes used File – add file to library. So far so good. For what ever reason one of the CDs would not load onto the stick. I got the orginal CD and loaded directly to Itunes. Now when I look in  Libraries – Music – iTunes it’s not there but it is in and plays in iTunes. What should I have done or should I be doing? Thanks.

    It's not a unique situation - happens all the time, smaller hard drives getting filled up.
    It's also easy to fix. I just moved my itunes content to a bigger hard drive.
    First I made a backup of the itunes database file - iTunes Library.itl. Just in case anything went wrong.
    Nothing did go wrong, but I'd have it in case anything DID go wrong. That file holds ratings, playcounts, Date Added, and other metadata.
    Second, in itunes change the preferences > advanced tab to tell itunes to put everything on G:
    Set the itunes folder location to something like G:Media or G:iTunes
    This will affect all FUTURE additions to itunes and not do anything to the existing locations.
    Make sure the checkbox for "Keep itunes organized" is NOT checked. I also left the "Copy files when adding" unchecked.
    Third, to move all the files to G: without itunes losing the paths, run the File > Library > Organize > Consolidate command. This will need to run a while, so be patient as it copies all the files to the new G: location. This does NOT delete the originals. You will have to do that.
    Fourth, make sure everything in itunes is OK and you can play stuff in your library. If you're really cautious you can run a script to check for missing/dead tracks.

  • I cannot copy and paste to a new layer in PSCC

    I am trying to use the magnetic lasso tool to outline my product and move that product to it's own layer so I can create a banner.
    The lasso will not turn off, I have made sure it met the beginning of the outline, and I have clicked enter. I was instructed to copy the product and paste it and it will show up as a new layer. I am concerned that I have something set or not set that would cause the tools to stick, and that I am missing a step between copy and paste.
    Can someone please help me or direct me to a tutorial that will cover these subjects? I have been trying to figure it out on my own for two days.
    Thanks,

    I actually found under  EDIT then Catalog settings / then metadata that the automatic write changes to XMP had been unchecked. Once I check this, it updated and connected all the keywords to the pictures. Now when I copy and paste the keywords show up as I can now detect them in Adobe bridge when before I couldn't see them even though they were in lightroom. . Thanks for your input.

  • Copy and paste styles do not work in toolbar

    I cannot get the copy and paste style functions in the toolbar to work properly for Pages 5.5.   is this something not available in 5.5?
    Do I need to export my document back to Pages 4.3 to have that feature available?

    Hi Pcenginefx,
    This is expected behavior. Marking In and Out points in clip thumbnails is not supported directly in the Media Browser, you must import the clips to the Project panel first. Clips in the Media Browser cannot have metadata added to them to them (like In and Out points) until they are in the project.
    You can still open the clips from the Media Browser into the Source Monitor to set In and Out points before importing them into the project if that workflow is important to you.

  • Copy and paste cell content of web form of Hyperion Planning

    Our end users encountered performance issues in using the web forms of Hyperion Planning. We have some large web form with 60 columns and 100 rows i.e. around 6000 cells. When end user move around the cell they feel a slow response in the web form especially when copy and paste some cell content from one row to another, or a few cells from one position to other position.
    Anyone got similar experience in using web form? Also we understand that Hyperion design will check the cell content of each cell and generate a SQL query to the backend metadata database. It is quite time consuming and waste CPU resource because most of the time our end user will not keep the text information under each cell. We have consulted Oracle team and understand that we cannot disable the cell content checking via SQL query.
    Any workaround solution exists to reduce or remove the performance issue in cell content copy and paste?
    Thanks!

    Hyperion user wrote:
    Alp Burak wrote:
    Hi,
    We had faced the same issue a few years ago. One of our geeks had done a change in either Enterdata.js or Enterdata.jsp which disabled form cell validation. I don't currently have the code with me but it wasn't a big change really, remarking a function could be doing the trick.
    I don't think this is officially recommended by Oracle though.
    AlpThanks for your advice. We will try to locate the enterdata.jsp and enterdata.js and found out where the SQL being executed.We found out the Enterdata.js under the deployment directory of Weblogic. However it is over 400KB size and many many lines of codes. We think that it is very difficult to locate where should be customized to remove the SQL checking on cell content.
    \\Hqsws04\hyperion\deployments\WebLogic9\servers\HyperionPlanning\webapps\HyperionPlanning

  • Keywords not transferring with pictures on copy and paste to a new computer. In lightroom on old computer but not in lightroom on new computer? Not all pictures, but a lot of the new ones.

    Keywords not transferring with pictures on copy and paste to a new computer. The keywords are in lightroom on old computer but not in lightroom on new computer? Not all pictures, but a lot of the new ones.

    I actually found under  EDIT then Catalog settings / then metadata that the automatic write changes to XMP had been unchecked. Once I check this, it updated and connected all the keywords to the pictures. Now when I copy and paste the keywords show up as I can now detect them in Adobe bridge when before I couldn't see them even though they were in lightroom. . Thanks for your input.

  • Hi, I was trying to copy and paste a lot of  info for one day on my calendar to another day and an error message popped up saying that the system responded with an error. Msg won't go away I force quit ical

    Need help for trying to unfreeze a message on my ical.  I was trying to copy and paste some appointment info from one day to another on my ical and a message popped up saying the system responded with an error.  All of my info was below the message.  I can't get that message to go away or work on the ical now at all.  I try to force quit ical and have shut down the computer and it still comes up.  Any suggestions?

    K,
    Try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. To find that Library folder, if you are using Lion, use Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop, and log out/in or restart.
    Next, make sure that you are not connected to the internet. Then to to your Macintosh HD/Users/yourusername/Library/Calendars Folder and remove any files with "Cache" as a part of the file name. Use the same method as listed above to get to the correct Library Folder. Log out/in, or restart and check iCal for functionality.

  • HT201269 itunes cannot see my iphone backup.  I have a backup of the backup on an external HD, but even tech support cannot figure this one out.  I copy and paste backups into the correct folder but itunes still does not see it.  All I need are my contact

    Sorry for short novel I am writing.  I just wanted to cover as much backround as possible.
    So, here it goes.  I backed up my iphone 4 after renting a movie.  The movie only played the starting credits before I was called on for daddy duty.  A few days later the movie would not play, so I restored my phone from my backup.  The movie would still would not play so itunes support refunded my purchase and ended my viewing privileges for that rental after verifying that I had not viewed the movie.  I then had a problem with my contacts showing up twice in the contacts list after the restore.  So I attempted another restore.  All was well at this point.  I then started having trouble with my pc and decided to copy the internal drive to an external source.  A week later I had a system failure and did a factory restore on my computer.  I re-installed itunes and tried to copy and paste the old backup into the new itunes.  Now itunes just flat out does not see the backup file (I failed to mention that I did a factory reset on the iphone after the last backup, hopping to start fresh).  Tech support had me uninstall and re-install itunes and then copy and paste the old backup into the newly installed itunes with no luck.  The files are all there, but itunes just doesn't see them (itunes says the device has not been backed up to the cloud or to the local machine).  We then tried backing up the factory restored iphone and replacing that restore file with one of my old backups on the external drive.  Ok, this is where it gets weird.  We replaced the guts of the folder but left the folder itself so itunes would continue to recognize the new backup folder with the old files.  Whoohoo, itunes now see's a backup folder full of old files, or so we thought.  The new files were deleted using shift delete so they would be gone for good and not mix with any files or folders.  When I restore my phone, it restores the files that were deleted from the restore file (pause here for a moment and imagine the stupid look on the face of tech support and I while we silently wonder how files that were permanently deleted were restored).  This left tech support and I both scratching our heads.  My service issue was escalated to the next level.  I waited for the phone call the next day that was scheduled at 10am to my wife's phone, but the call never came through.  As usual, apple disappoints again.  I just bought an iphone 5s and still have the iphone 4, and am looking for a solution to retrieve my contacts and restore to the 4 or 5s.  I am guessing that files in other folders must be associated with the iphone backup in order for itunes to retrieve the files.  Any ideas or support in retrieving my contacts would be greatly appreciated. 

    Sorry for short novel I am writing.  I just wanted to cover as much backround as possible.
    So, here it goes.  I backed up my iphone 4 after renting a movie.  The movie only played the starting credits before I was called on for daddy duty.  A few days later the movie would not play, so I restored my phone from my backup.  The movie would still would not play so itunes support refunded my purchase and ended my viewing privileges for that rental after verifying that I had not viewed the movie.  I then had a problem with my contacts showing up twice in the contacts list after the restore.  So I attempted another restore.  All was well at this point.  I then started having trouble with my pc and decided to copy the internal drive to an external source.  A week later I had a system failure and did a factory restore on my computer.  I re-installed itunes and tried to copy and paste the old backup into the new itunes.  Now itunes just flat out does not see the backup file (I failed to mention that I did a factory reset on the iphone after the last backup, hopping to start fresh).  Tech support had me uninstall and re-install itunes and then copy and paste the old backup into the newly installed itunes with no luck.  The files are all there, but itunes just doesn't see them (itunes says the device has not been backed up to the cloud or to the local machine).  We then tried backing up the factory restored iphone and replacing that restore file with one of my old backups on the external drive.  Ok, this is where it gets weird.  We replaced the guts of the folder but left the folder itself so itunes would continue to recognize the new backup folder with the old files.  Whoohoo, itunes now see's a backup folder full of old files, or so we thought.  The new files were deleted using shift delete so they would be gone for good and not mix with any files or folders.  When I restore my phone, it restores the files that were deleted from the restore file (pause here for a moment and imagine the stupid look on the face of tech support and I while we silently wonder how files that were permanently deleted were restored).  This left tech support and I both scratching our heads.  My service issue was escalated to the next level.  I waited for the phone call the next day that was scheduled at 10am to my wife's phone, but the call never came through.  As usual, apple disappoints again.  I just bought an iphone 5s and still have the iphone 4, and am looking for a solution to retrieve my contacts and restore to the 4 or 5s.  I am guessing that files in other folders must be associated with the iphone backup in order for itunes to retrieve the files.  Any ideas or support in retrieving my contacts would be greatly appreciated. 

  • [b]HOW TO:[/b]  Copy and Paste THE Filename AND its PATH from Finder

    HOW TO DO THIS: Copy and Paste THE selected Filename AND its entire PATH from Finder to another application as in document footer reference, or document database which has a path field to aid in locating the file later.
    Finder, Spotlight and File Info (can be used to display Path) or using Command F, command I, etc. but user is not allowed to copy the path to clipboard.
    This is rudimentary, yet the word Path, is unknown to Mac Help.
    Message was edited by: jbov

    AJ,
    Isn't it amazing....There is no Command Key for this action? Apple Care was confounded too. And thanx, it'll be a help....
    Jim
    its tedious, but this should work:
    open a terminal window.
    Drag and drop the icon for the file in the terminal
    window.
    This will put the full path including the filename on
    the command line.
    Copy the path from the command line, and paste
    (wherever).
    Close the terminal window.

Maybe you are looking for

  • Key date in vendor ageing report

    hi, As i run the report S_ALR_87012077 which stands for vendor ageing report it shows Key date on the top right hand side of the report. Can any one tell me what does this Key Date stand for and from where it is getting picked up Thanks Parin

  • Error in making report

    I am trying to make a report for a database.  I have vb2010 express.  I have the option to add the crystal report viewer to a form, but when I try to make a report, it gives me the error "The system cannot find the file specified.(exception from HRES

  • IMovie HD movie has no Play buttons.. partially frozen

    IMovie HD movie has no Play buttons.. partially frozen/ please help. It is only with a particular movie which is both on an external hard drive and on the computer.

  • Documents / Cookbook on how to configure Extended Classic Scenario?

    We currently have the Classic scenario and are thinking of changing to exteded classic becuase we want to use the sourcing cockpit in SRM 7.0.  Does anyone have any good documentation on how to configured Extended Classic?

  • EFP and Intranet Portal - Best Practices for architecture

    Hi All,    We are planning to create a portal for our partners  (b2b scenario). This portal will provide anonymous  and user specific access. We also have a intranet portal with ESS and MSS.  I have some doubts around implementing EFP and Intranet po