Properties metadata?????

I am being told in tutorial to look at the propeties metadata. I can not figure out how to do this. Can someone please help this PSE newbie how to do this.....

ANYONE?, ANYTHING PLEEEEASE!!!!

Similar Messages

  • Why can't I paste code snippets in Page Properties Metadata area for head ?

    I downloaded the new Muse 2014 CC the other day and everything seemed to install correctly, however, yesterday I tried add Google Analytics code snippet to the Page Properties >> Metadata section where code goes into <head> area of the site and after coping the code, in Muse Paste was grayed out. I tried on both the HOME page and Master page.

    How can I do a screenshot when my cursor needs to be in the EDIT >> PASTE drop down? It's impossible. Just know that after I click into the <head> code area and select it so that it becomes outlined in blue, then go to EDIT >> PASTE none of the items in the EDIT drop-down are available, everything is grayed out.

  • Properties metadata with dependecies in XML Forms

    Hello!
    I've created two properties metadata with dependencies, like product and subproduct, so these two properties are related to each other.
    I tried to add these properties to a XML Forms, but when I add the product, the list is empty, doesn't show any of the predefined values. What can it be ?
    And how do I add these two properties related in the XML Forms ? Do I need to do any other configuration to the properties ??
    Thanks
    Luisa

    Hi Luisa,
    unfortunately, this feature is not supported by XMLForms --> sorry
    Regards
    --Matthias

  • How to use Properties Metadata global service using KM API's

    Hi,
    I have a requirement where I need to get the list of property Namespaces configured in the KM Portal and also all property Names associated with each Namespace.
    I was able to see the list of Namespaces in KM portal at "ContentManagement --> Global Services --> Property Metadata --> Namespaces"
    Is there any way to access the Property Metadata service and get the list of Namespaces?
    I have seen few posts using the IPropertyConfigurationService as below:
    IPropertyConfigurationService configService;
    try {
    configService =
    (IPropertyConfigurationService) ResourceFactory
    .getInstance()
    .getServiceFactory()
    .getService("PropertyConfigurationService");
    } catch (PropertyConfigurationServiceException e) {
    e.printStackTrace();
    I am not sure if IPropertyConfigurationService has API's to give the list of Namespaces as I was not able to figure out the jar file in which API's related to IPropertyConfigurationService exists.
    Will the IPropertyConfigurationService be useful to fetch all the configured Namespaces? If so, which jar file should I place in my build and class path?
    Also, Can I get the property names associated with each namespace?
    Any help or hint is greatly appreciated.
    Thanks,
    Suresh.

    Hi Praveen,
    Thanks for the information on km.shared.service.propertyconfig_api.jar file. I have located the file in the mentioned location and was using it sucessfully.
    I was able to use IPropertyConfigurationService  and fetch the MetaData properties in the Portal application.
    But, when I place the same code on WebDynpro application it doesn't work.
    I have placed the km.shared.service.propertyconfig_api.jar in lib folder of the WebDynpro project, but on runtime I get ClassNotFound exceptions of various classes.
    I was wondering if there is any configuration that need to be mentioned for accessing KM Portal applications in WebDynpro.
    I have found one post related to this which was talking about using IPropertyConfigurationService in WebDynpro, but not directly, using EJB
    Link:[https://www.sdn.sap.com/irj/sdn/thread?threadID=338383]
    Can you throw some hints on how to go about this issue.
    Thanks,
    Suresh.

  • Extracting "File Properties" metadata

    After processing scanned images in Photoshop CS3, I am uploading them to a DAM solution that has the capability to extract embedded metadata using custom defined keys. I would like to know the syntax/structure of embedded metadata labels that display in the "File Properties" template of Bridge CS3 (e.g. File Size, Dimensions, Color Space) so that I can extract that metadata.
    Thank you!

    In Preferences>Metadata there are two choices for dimensions - inches and cm, check the box for your poison.

  • Extracting "File Properties" metadata from Photoshop CS3

    After processing scanned images in Photoshop CS3, I am up loading them to a DAM solution that has the capability to extract embedded metadata using custom defined keys. I would like to know the syntax/structure of embedded metadata labels that display in the "File Properties" template of Bridge CS3 (e.g. File Size, Dimensions, Color Space) so that I can extract that metadata.
    Thank you!

    I have this printer and use Leopard, but I don't have this problem I am useing the 6.2 driver. There are two drivers on their website, I am using only the driver that came with the machine. I would re-install the driver. Secondly and this caught me up a bit at first. You open the CS print manager, press print and then the Epson driver emerges, there i s no direct access from CS3 to the driver. Secondly in the Epson driver there are two or three set of drop down menus, the one that permits setting the paper profile is not exactly where you expect it, just have a look through all the menus(I am not sitting in fronto of my mac right now so I am of limited help). Good luck.

  • Office File Properties - Metadata

    Hi all,
    How can I populate the actual contents of a file (word, excel,...) with metadata values? And the reverse... extract custom metadata field value from a Microsoft Office document and then use these value to populate metadata fields on the content server.
    Thanks,

    Hi,
    I think that you can populate metadata automatically with the "Content Categorizer" component.
    You can : - populate the metadata with the Word file properties
    - populate the metadata with some references that are included in the Word document.
    For the reverse side, I think you have to develop your own component...
    I hope it will help!!
    Romain.

  • Extract 'File Properties' Metadata

    I am looking for a way to extract all the information in the File Properties to a .csv. I have downloaded the Export Metadata script and it, works except I cannot include the File Properties in the Schema field. I hope there is a way to modify this script to include the File Properties.
    Eric

    Thanks
    Good Luck.
    My
    Si
    tes

  • File Properties - Metadata

    Can someone please tell me how I can get file sizes to show in millimetres and not inches in the Metadata File properties window.

    In Preferences>Metadata there are two choices for dimensions - inches and cm, check the box for your poison.

  • Format plug-in: Setting file properties/metadata

    Hello,
    I am currently writing a plug-in to import a proprietary image format into Photoshop. The people who will use this plug-in believe it would be useful to have some file information displayed in the File Info dialog.
    The problem I'm running into is finding the functions necessary to set these properties in the File Info dialog, as currently they are all entirely blank.
    As a simple example, if I wanted to have the Document Title, Author, Description and Keywords read "Hello, world!" after I've read in an image, what functions would my plug-in have to call to set each of these text fields?
    Is there a struct that my plug-in needs to modify, or a group of get/set functions to change these properties?
    Any information would be extremely helpful, as documentation on the subject is very difficult to find in the SDK.
    Thanks a lot!
    Jack

    Thanks for your help, Toby.
    I've got an idea of how to configure the properties at this point. Simple properties work now, but I am still running into a bit of trouble setting complex options such as the Caption tag. I create a handle, populate it with the null-terminated string for the caption, and then I use setPropertyProc to link that handle to propCaption. The code would go something like this:
    >Handle h = sPSHandle->New( captionLength );
    >if( h )
    >{
    > Boolean locked;
    > Ptr p;
    >
    > sPSHandle->SetLock( h, true, &p, &locked );
    > // In here, use memcpy to copy a typical C string into p
    > sPSHandle->SetLock( h, false, &p, &locked );
    >
    >sPSProperty->setPropertyProc(kPhotoshopSignature,propCaption,0,0,h);
    >}
    Basically when I run my plugin and open a file, the Description field is still blank, as it was before I tried to populate the fields.
    Is there something wrong with my approach? Incidentally, I also encounter the same problem when I use the same property and handle suite methods that you do (FormatRecord->PropertyProcs and FormatRecord->HandleProcs instead of sPSProperty and sPSHandle respectively). From looking at other available code online, I'm assuming that there isn't a difference in behaviour. Please correct me if I'm wrong! :)

  • Properties: Metadata: Print or Web?

    What is the difference in choosing Advanced Metadata, either Print or Web?
    The documents we are working with will become downloadable digital content. Does either Print or Web place restrictions on a document, or does the choice of Web compress it?
    Thank you!

    Thanks for that everyone you were right! I was being super-DUper sMart and Brilliant there and had only been trying to re-arrange within the layout window of the Print and Web areas. I think I was just assuming I was having the same trouble from Lightroom 1 and just stopped trying since it seemed the files either never moved or didn't stick (can't remember now). In any case, Thank you!

  • Author metadata separated by semi-colons truncated in file properties and "Get Info"

    I'm using Acrobat Professional 9.0 (CS3) for Mac to edit the metadata for a collection of PDFs to be made available on the web. When I enter the data, I am inputting a list of authors separated by commas, like this: Smith J, Watson C, Brown J. If I click on "Additional metadata", the data I've already entered is transposed into the various XMP fields. And the commas separating the author names are changed to semi-colons. I gather that this happens because XMP wants to separate multiple authors with semi-colons, and Acrobat wants the metadata in XMP fields to match the metadata stored for the file properties. Fine.
    However, if I save such a PDF and then use Get Info on my Mac (OSX 10.4) to look at the file properties, the list of authors is now truncated where the first semi-colon appears. The list is also truncated in Windows XP if I right-click and select properties. The list is also truncated when I look at the file properties in Preview on my Mac, or if I look at file properties using FoxIT, or using Adobe Acrobat Reader 7 or earlier. The only way a site visitor will actually be able to view the full list of authors in a file saved this way is to use Adobe Reader version 8 or later.
    I would like to preserve XMP/Dublin Core/etc metadata in the proper format in the XMP code, but would also like users of standard, popular file viewers to be able to access the full list of authors. Is there a way to do this with Acrobat 9?
    Also, once I've saved a file and the XMP metadata has been altered, Acrobat seems to permanently change the way that the authors are listed in the file properties. I cannot manually change those settings any longer without Acrobat overriding my changes and converting commas to semi-colons, or surrounding the entire list of authors in quotation marks. Is there a way to get around these Acrobat overrides and manually take control of my metadata again?
    Does Windows Vista read the authors list correctly in the file properties if it is separated by semi-colons?
    It seems to me that in an attempt to get XMP metadata working smoothly across the entire CS line, Adobe has jumped the gun somewhat and is now forcing Acrobat users to use "file properties" metadata that is really only fully compatible with Adobe products. Is there a way I can get some backwards compatibility on this?
    Thanks for any suggestions or insight anyone can provide to this vexing issue.
    Phil.

    Bridge has some pretty powerful and helpful features. However, I am unable to figure out how to access the non-XMP "file properties" fields through Bridge, and if I add metadata via Bridge, then I run into the same problem regarding the use of semi-colons to separate authors.
    If I had more time, or a larger set of files I might investigate the use of ExtendScript to import all my metadata from an Excel file (where it already exists) into the PDF file properties and XMP metadata.
    The best solution for my case though appears to be to use Acrobat 9 and to do the double-edit process for each file. I should be able to just cut-and-paste the metadata from the Excel file, and then if I save the Authors list to the end, I can simply paste it once into the XMP field (through the Advanced metadata button) and then return to the regular file properties page and paste it again in there, where Acrobat will add quotes around it.
    Lastly, if anyone else happens to find this post and is looking for similar information, I would recommend searching in the Bridge forum as well as the Acrobat forum.
    Phil.

  • The document could not be saved. The server said: "The operation failed because an unexpected error occurred. (Result code 0×80020005)" Please ensure you have completed all required properties with the correct information and try again.

    I am having problems  saving documents back to SharePoint when any of the document properties (metadata columns) are set to be "managed metadata". The check-in/save fails with error:
    The document could not be saved. The server said:
    “The operation failed because an unexpected error occurred. (Result code 0×80020005)”
    Please ensure you have completed all required properties with the correct information and try again.
    I have seen similar threads that suggest this is a known issue with this version of Acrobat but I would like conformation from Adobe that this is a known issue and whether it is fixed in a newer version?
    Adobe Acrobat version 10.1.13
    SharePoint 2010

    Hi quodd,,
    We are sorry for the issue being faced by you. I need some information from you so that I take further steps:
    1. Which Adobe product are you using Acrobat or Adobe reader- what is the complete version?
    2. How are you opening and saving the PDF, the exact workflow?
         Are you doing it from within Adobe Reader/Acrobat application or opening it from browser, doing changes and saving it using browser itself.
    3. Can you try to save a PDF to library with Custom template and managed metadata columns using browser directly.
    4. Please verify that columns name do not contain spaces or some other special characters.
       Can you try to save PDF to library with Custom template and just a single managed metadata column  with a simple name
    Thanks,
    Nikhil Gupta

  • Muse CC 2014 Crashing when I try to edit Page Metadata / HTML section

    Muse CC 2014 is crashing consistently when trying to edit Page Properties / Metadata / HTML.  It appears that if I try to do Copy Paste of some text into this box, without already having a blinking cursor in the box, that Muse crashes with the error displayed in the attached image.  This has happened several times now.  I am running using Creative Cloud in OS-X 10.9.3.  To get here I right-click on the page, page properties.., click on Metadata, click in the HTML... box and CMD-V to paste.  I have pasted the text several times successfully.

    This is a know regression issue in RoboHelp 11.0.3. The only workaround for now is to open the SLP files with notepad or another editor.
    You can report this issue at: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38 Though Adobe is already aware of this issue, this form gives them an estimate of how many people are using this feature. And the more people report it, the more likely it is to be fixed quickly.
    Kind regards,
    Willam

  • Windows 7 doesn't display pdf properties

    Windows 7 doesn't display pdf properties/metadata, like title, comments, author, subject etc. This was a great feature in XP. Anybody know a workaround?

    On this site is explained how to display the pdf properties in windows 7 explorer.
    http://social.answers.microsoft.com/Forums/en-US/w7files/thread/203b60ca-b773-4931-85ad-a5 e67656d6ce
    steps:
    open the file explorer in windows7
    select libraries from the left navigation bar
    right click on the libraries heading.
    select "new" > "library"
    give the library a name e.g. "sales orders".
    press the button "include new folder" to select the folder where the pdf files are in. e.g. "D:\files\sales\orders\"
    select (top-right) "arange by" and select e.g. "name".
    you should now be able to see the pdf properties (don't forget to enable the subject etc. collums)
    See picture..
    Good luck!!

Maybe you are looking for