The DAM Forum
Welcome, Guest. Please login or register.
May 23, 2013, 04:21:23 AM

Login with username, password and session length
Search:     Advanced search
Jan 9, 2012
John Beardsworth's new Lightroom site
Lightroom Solutions
27960 Posts in 5113 Topics by 2914 Members
Latest Member: imthedamstar
* Home Help Search Login Register
+  The DAM Forum
|-+  General
| |-+  General Discussion
| | |-+  File Info Panel: Description/Doc title
« previous next »
Pages: [1] Print
Author Topic: File Info Panel: Description/Doc title  (Read 3125 times)
geoffjohnson
Jr. Member
**
Posts: 53


View Profile
« on: December 04, 2005, 12:52:56 PM »

Is it possible for the DOCUMENT TITLE in the Description Panel of  CS2's File Info to automatically use the file name?  How do I apply this to multiple images. Any ideas?

Thanks.

Geoff Johnson
http://maloneandco.com
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #1 on: December 04, 2005, 01:14:48 PM »

Geoff,
The only way I know to do this in Bridge is to use Rank and File 1.12. (www.DAMuseful.com). We took this out of the current feature, preferring to write it to the XMP field, "Preserved Filename".  Although I have been considering putting it back in  so that R&F writes it to both places.

iView has a couple of scripts that can do a similar thing, although it seems that they write to Caption, Product, or Source.

Peter
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #2 on: December 04, 2005, 01:29:08 PM »

Geoff,
Nice website, BTW.
Peter
Logged
johnbeardy
Administrator
Hero Member
*****
Posts: 1813


View Profile WWW
« Reply #3 on: December 07, 2005, 07:53:00 AM »

Funny how the same names crop up so often! I posted this to Geoff's enquiry at the http://www.portfoliofaq.com/forum/.

John

Quote
#target bridge
//-----------------------------------------------------------------------
//This script copies selected thumbnails' filenames to the title field
//Also shows how to add menu items
//The AdobeLibrary scripts must be loaded
//--------------------------------------------------------------------

newMenu = MenuElement.create("menu", "Scripts", "after Tools", "MyMenu");

fCommand =  MenuElement.create("command", "Set Title to same as Filename ", "at the end of MyMenu", "mySync");
fCommand.onSelect = function (m)
{
var getFolderChildren = true ;
var filesOnly = true ;
var thumbs = getBridgeThumbnails ( TYPES.PHOTOSHOP_OPENABLE, getFolderChildren, filesOnly) ;

for ( var i = 0; i < thumbs.length; i++ )
{ thumb = thumbs;

   md = thumb.synchronousMetadata;

   md.namespace ="http://ns.adobe.com/photoshop/1.0/";
   md.Title = thumb.name;
   
}
   Window.alert ("Done " + i + " records");
};
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #4 on: December 07, 2005, 09:06:09 AM »

John,
Can I post this script as a javascript?  Not everyone knows how to turn a text file into a script.  I've also modified it a little bit (changed the menu behavior).
Peter
Logged
johnbeardy
Administrator
Hero Member
*****
Posts: 1813


View Profile WWW
« Reply #5 on: December 07, 2005, 09:33:51 AM »

Certainly. Maybe I'm being thick but can't see what URL would this be.
« Last Edit: December 07, 2005, 09:39:54 AM by johnbeardy » Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #6 on: December 07, 2005, 09:46:34 AM »

You mean where would I post this?  I was thinking the Pimp My Bridge section of DAMuseful.com
Peter
Logged
johnbeardy
Administrator
Hero Member
*****
Posts: 1813


View Profile WWW
« Reply #7 on: December 07, 2005, 10:04:21 AM »

Yes, that's what I meant - understood.

John
Logged
havezet
Full Member
***
Posts: 176



View Profile WWW
« Reply #8 on: December 08, 2005, 01:38:49 AM »

The only way I know to do this in Bridge is to use Rank and File 1.12. (www.DAMuseful.com). We took this out of the current feature, preferring to write it to the XMP field, "Preserved Filename".  Although I have been considering putting it back in  so that R&F writes it to both places.

The IPTC4XMP specifications advise to use the original filename (without file extension) as the title for the document (dc:title XMP tag). The title and the preserved file name don't *have* to be the same; although it will when first starting with an image in a workflow.
Logged

Author of IDimager
http://www.idimager.com
Pages: [1] Print 
« previous next »
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!