XML Not Showing Tags

I need to export the XML of my files in order to show the metadata associated with my project. However, for some reason when I do this the decription and tags that are in the properties do not show up anywhere in the XML (which it did on a different computer). What am I doing wrong and how can I get my XML to include those attributes? I have tried exporting the XML in ever Metadata View and it still doesn't show the Tags or Description, only the title.

I need to export the XML of my files in order to show the metadata associated with my project. However, for some reason when I do this the decription and tags that are in the properties do not show up anywhere in the XML (which it did on a different computer). What am I doing wrong and how can I get my XML to include those attributes? I have tried exporting the XML in ever Metadata View and it still doesn't show the Tags or Description, only the title.

Similar Messages

  • In iPhoto 09 Info does not show tags on aperture, time, iso etc. Other tags like place, pixels are shown. There is no little arrow on this info menu to go to full info box. How come ?

    in iPhoto 09 Info does not show tags on aperture, time, iso etc. Other tags like place, pixels are shown. There is no little arrow on this info menu to go to full info box. How come ?

    It does. Photos Menu -> Show Extended Photo Information.
    Then note the disclosure arrows as indictaed in this thread:
    https://discussions.apple.com/message/16512794#16512794
    Regards
    TD

  • Converted XML not showing multiple data entries correctly

    Hello
    I am creating a PDF Form from a xsd scheme but when I have data that could require multiple entries the converted xml is a mess. I am curently trying to create a way to add fields for multiple children. I created an expanding table and the fields are automatically copied when I click on „+“ or are deleted when I click on „-“ . If I have multiple rows for children then the converted xml looks like this :
    The correct xml for multiple data entries should look like this (this is from a xml scheme not made in LiveCycle) :
    Even if I copy the fields without creating a table, the converted xml is still a mess just like on the first image. Is there a way to show the xml from the PDF from correctly. I linked the xsd scheme that I am using for the PDF form: https://drive.google.com/file/d/0B30LkLSwYgB4SFN5bTkyLW1fOVU/edit?usp=sharing
    Best regards
    Ivica

    Hello
    I am creating a PDF Form from a xsd scheme but when I have data that could require multiple entries the converted xml is a mess. I am curently trying to create a way to add fields for multiple children. I created an expanding table and the fields are automatically copied when I click on „+“ or are deleted when I click on „-“ . If I have multiple rows for children then the converted xml looks like this :
    The correct xml for multiple data entries should look like this (this is from a xml scheme not made in LiveCycle) :
    Even if I copy the fields without creating a table, the converted xml is still a mess just like on the first image. Is there a way to show the xml from the PDF from correctly. I linked the xsd scheme that I am using for the PDF form: https://drive.google.com/file/d/0B30LkLSwYgB4SFN5bTkyLW1fOVU/edit?usp=sharing
    Best regards
    Ivica

  • XML not showing load progress...

    I have a fla file that loads a slide show from an XML file. The xml file contains info about each slide. There's over a 100 slides so the loading takes some time. However I'm not getting actual load progress. It traces nothing until after the load is complete and then it shows the progress that it should have traced one by one, however it traced them all at once on the complete. Because it's not firing the onProgress correctly my preloader is rendered useless. Am I doing something wrong on is this a bug in Flash?
    //======================================================================================== =================================================
    //     load xml
    //======================================================================================== =================================================
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.addEventListener(ProgressEvent.PROGRESS, LoadingXML);
    function LoadXML(e:Event):void {
    trace("complete");
    xmlData = new XML(e.target.data);
    ParseSlides(xmlData);
    xmlLoader.removeEventListener( ProgressEvent.PROGRESS, LoadXML);
    xmlLoader.removeEventListener( Event.COMPLETE, LoadingXML);
    MovieClip(root).loading_mc.x = 1500;
    MovieClip(root).loading_mc.bar.width = 1;
    MovieClip(root).loading_mc.loading_txt.text = "";
    function LoadingXML(e:ProgressEvent):void {
    //trace("Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%");
    var loaded:Number = e.target.bytesLoaded;
    var total:Number = e.target.bytesTotal;
    var pct:Number = loaded / total;
    trace(pct);
    MovieClip(root).loading_mc.x = 500;
    MovieClip(root).loading_mc.bar.width = pct * 194;
    MovieClip(root).loading_mc.loading_txt.text = "Loading XML... " + (Math.round(pct * 100)) + "%";
    xmlLoader.load(new URLRequest("XML/SectionII.xml"));
    HERE IS THE OUTPUT: All at once when the complete fires
    0.149821570227718
    0.299643140455436
    0.44946471068315397
    0.599286280910872
    0.74910785113859
    0.8989294213663079
    1
    complete

    Actually it still doesn't work like I need it to. The loading of the xml preloader only works if the temporary internet files are gone. Which means that the time I need the loader is during the parsing of the xml process. I have a function that creates an object for each slide after the xml loads. It runs through a for loop, however the loader won't appear and work during the for loop. It only works after its finished.
    function ParseSlides(slideInput:XML):void {
    // create a list of slide items
    var slideList:XMLList = slideInput.Slide;
    var slideSize:Number = slideList.length();
    var buildPct:Number;
    // run through list to build each slide object
    for (var i:Number = 0; i < slideList.length(); i++) {
      // get progress of building slides
      buildPct = Math.ceil(i / slideSize);
      MovieClip(root).loading_mc.bar.width = buildPct * loadBarWidth;
      MovieClip(root).loading_mc.loading_txt.text = "Building Slides... " + (Math.round(buildPct * 100)) + "%";
      // build slide id and name
      var idElement:XML = slideInput.Slide.attribute("ID")[i];
      var headerElement:XML = slideInput.Slide.header.copy[i];
      var headerAnimationElement:XML = slideInput.Slide.header.animation[i];
      var headerStartXElement:XML = slideInput.Slide.header.startx[i];
      var headerStartYElement:XML = slideInput.Slide.header.starty[i];
      var headerFinishXElement:XML = slideInput.Slide.header.finishx[i];
      var headerFinishYElement:XML = slideInput.Slide.header.finishy[i];
      var headerStartAlphaElement:XML = slideInput.Slide.header.startAlpha[i];
      var headerFinishAlphaElement:XML = slideInput.Slide.header.finishAlpha[i];
      var headerDelayElement:XML = slideInput.Slide.header.delay[i];
      var headerSecondsElement:XML = slideInput.Slide.header.seconds[i];
      var subheaderElement:XML = slideInput.Slide.subheader.copy[i];
      var subheaderAnimationElement:XML = slideInput.Slide.subheader.animation[i];
      var subheaderStartXElement:XML = slideInput.Slide.subheader.startx[i];
      var subheaderStartYElement:XML = slideInput.Slide.subheader.starty[i];
      var subheaderFinishXElement:XML = slideInput.Slide.subheader.finishx[i];
      var subheaderFinishYElement:XML = slideInput.Slide.subheader.finishy[i];
      var subheaderStartAlphaElement:XML = slideInput.Slide.subheader.startAlpha[i];
      var subheaderFinishAlphaElement:XML = slideInput.Slide.subheader.finishAlpha[i];
      var subheaderDelayElement:XML = slideInput.Slide.subheader.delay[i];
      var subheaderSecondsElement:XML = slideInput.Slide.subheader.seconds[i];
      var audioElement:XML = slideInput.Slide.audio[i];
      var videoElement:XML = slideInput.Slide.video[i];
      // create new slide object
      slide[idElement] = new Object();
      slide[idElement].name = idElement;
      // set header information
      slide[idElement].header = headerElement;
      slide[idElement].headerAnimation = headerAnimationElement;
      slide[idElement].headerStartX = headerStartXElement;
      slide[idElement].headerStartY = headerStartYElement;
      slide[idElement].headerFinishX = headerFinishXElement;
      slide[idElement].headerFinishY = headerFinishYElement;
      slide[idElement].headerStartAlpha = headerStartAlphaElement;
      slide[idElement].headerFinishAlpha = headerFinishAlphaElement;
      slide[idElement].headerDelay = headerDelayElement;
      slide[idElement].headerSeconds = headerSecondsElement;
      slide[idElement].subheader = subheaderElement;
      slide[idElement].subheaderAnimation = subheaderAnimationElement;
      slide[idElement].subheaderStartX = subheaderStartXElement;
      slide[idElement].subheaderStartY = subheaderStartYElement;
      slide[idElement].subheaderFinishX = subheaderFinishXElement;
      slide[idElement].subheaderFinishY = subheaderFinishYElement;
      slide[idElement].subheaderStartAlpha = subheaderStartAlphaElement;
      slide[idElement].subheaderFinishAlpha = subheaderFinishAlphaElement;
      slide[idElement].subheaderDelay = subheaderDelayElement;
      slide[idElement].subheaderSeconds = subheaderSecondsElement;
      // set the audio in the slide
      slide[idElement].audio = audioElement;
      // set the video in the slide
      slide[idElement].video = videoElement;
      // push new slide to the array of slide names
      slidesArray.push(slide[idElement].name);
    //MovieClip(root).loading_mc.x = 1500;
    //MovieClip(root).loading_mc.bar.width = 1;
    //MovieClip(root).loading_mc.loading_txt.text = "";
    // start slide
    buildSlide();

  • Chinese characters in XML not showing up

    Hi,
    We are sending an Idoc from ECC to PI. The data in the Idoc is in Chinese. It shows up ok in ECC, but when the Idoc gets transferred to PI, the XML version of the Idoc has all #####s.
    Need your expert inputs to determine as to why ####s are coming in instead of the actual data. Is there something which could be done to avoid the same?
    Thank you all in advance!!
    Regards,
    Sidharth

    Hi,
    Check with this thread How to read text file contain chinese character ?
    Thanks!

  • Xml menu not showing in published html

    Hi all my problem is that when iam trying to publish an flash
    project containing a dynamic xml menu as html file ,the menu is not
    showing although it is showing in the accompannying swf file,any
    body knows the problem??

    There is not enough here to know what you are doing.
    Flash reads XML fine. You can then use that XML inside of
    Flash to create menus (or any UI thing) using Flash objects such as
    MovieClips and TextFields.
    You will not be able to create HTML based menus as Flash does
    not handle more than a few HTML tags via the TextField object.

  • XML child 'Title' does not show on web page

    I have imported an XML file and when I launch the page the
    title does not show.
    The following is on my page but does not display "
    <td><?xml version="1.0" encoding="UTF-8"?>
    <Title>Miss Congeniality 2: Armed and
    Fabulous</Title>xx </td>
    The rest of the field do display and I can not understand why
    'Title' Does not display.
    Thanks for any help
    David Merchant
    The following is the code to display the data:
    <cfloop index="MyCounter" from="1" to="#Counter#">
    <tr>
    <td>#mydoc.Collection.DVD[MyCounter].ID#</td>
    <td>#mydoc.Collection.DVD[MyCounter].UPC#</td>
    <td>#mydoc.Collection.DVD[MyCounter].ProfileTimestamp#</td>
    <td>#toString(mydoc.Collection.DVD[MyCounter]["Title"])#xx </td>
    <td>#mydoc.Collection.DVD[MyCounter]["SortTitle"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["Rating"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["ProductionYear"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["RunningTime"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["Audio"]#</td>
    </cfloop>
    This is the XML file I am reading
    <?xml version="1.0" encoding="us-ascii"?>
    <!-- DVD Profiler Version 2.4.0 Collection Export -->
    <!-- Exported: 9/3/2006 12:39:08 PM -->
    <Collection>
    <DVD>
    <ID>012569557123.21</ID>
    <UPC>012569-557123</UPC>
    <ProfileTimestamp>2004-03-17
    23:58:12</ProfileTimestamp>
    <Title>Doctor Zhivago</Title>
    <SortTitle>Doctor Zhivago</SortTitle>
    <Regions>
    <Region>3</Region>
    </Regions>
    <Discs>
    </Discs>
    </DVD>
    </Collection>

    I believe you want to print the XML node's text to a HTML
    table cell. To do so you would change:
    <td>#mydoc.Collection.DVD[MyCounter].ID#</td>
    to
    <td>#mydoc.Collection.DVD[MyCounter].ID.XMLText#</td>
    Try appending ".XMLText" to your variables.
    I would also consider droping the ToString method with:
    <td>#toString(mydoc.Collection.DVD[MyCounter]["Title"])#xx </td>
    to
    <td>#mydoc.Collection.DVD[MyCounter]["Title"].XMLText#</td>
    I don't know why you are invoking the toString() function
    here and not on the other nodes. It only confuses me, and likely
    you when you have to return to this code later, unless you are
    trying to do something special with this node, like set your HTML
    <title> tag.
    If you are trying to set your document's <title> tag
    then it should belong between the <head> tag of your document
    and not inside your table, as a matter of semantics.

  • I have "Explicit" song tags in iTunes, but they (the tags, not the songs) are not showing up on my iPhone.

    Hi,
    I recently found a way to add the "EXPLICIT" tag to songs in my iTunes Library (using Subler), and just presumed that the tags were not showing up in my iPhone Music because the phone simply did not have the function to display them.
    However, after updating to iOS 7, and seeing every song I have ever purchased, I noticed that the iPhone can indeed show whether songs are explicit or not (by marking them with a letter 'E').
    Therefore I am just wondering why I can see whether songs are explicit on my Mac, yet not on my iPhone. I have tried removing the songs from my iTunes Library, syncing to remove them from my phone, re-adding them to my Library, and then re-syncing to put them back onto my phone, and the explicit tag still does not show up.
    Please can you help me resolve this.
    Thanks

    If you are syncing your contacts from your PC with iCloud, they are not transferred to your phone using iTunes.  They are synced to your phone using iCloud, either over wifi or your cellular data network.
    First go to icloud.com with your computer browser, sign into your account and open Contacts there to confirm that your contacts appear.  If they do, go to Settings>iCloud on your phone, sign into your account and turn Contact on.  Assuming your phone is either connected to wifi or your cellular data network, the contacts should then download from iCloud to your phone.

  • I have "Explicit" songs tags in iTunes, but they (the tags, not the songs) are not showing up on my iPhone Music.

    Hi,
    I recently found a way to add the "EXPLICIT" tag to songs in my iTunes Library (using Subler), and just presumed that the tags were not showing up in my iPhone Music because the phone simply did not have the function to display them.
    However, in iOS 7, and seeing every song I have ever purchased, I noticed that the iPhone can indeed show whether songs are explicit or not (by marking them with a letter 'E').
    Therefore I am just wondering why I can see whether songs are explicit on my Mac, yet not on my iPhone. I have tried removing the songs from my iTunes Library, syncing to remove them from my phone, re-adding them to my Library, and then re-syncing to put them back onto my phone, and the explicit tag still does not show up.
    Please can you help me resolve this.
    Thanks
    iphone 5s - ios 7

    If you buy them as a Ringtone, then Itunes should automatically put them in Tones. It is a huge hassle and takes time most of us don't have to waste, when we purchased them as Tones and Apple told me they would automatically show up in Tones if purchased from Itunes Store. NOT!  And we shouldn't have to google to find the answer. They should make that clear on Itunes store.  Very disappoiinted in the Itunes upgrades that have caused so many problems.

  • Check Writer (xml) is not showing current accrual hours

    Hi,
    We are on EBS 11.5.10.2, we are going live with new accrual plan of category Vacation, when we run the check writer (Xml) process it does not show the current period accrual , it does show correct Net accrual hours. What do I need to do to get this working.
    Thank you.
    Edited by: 924406 on Jun 19, 2012 3:22 PM

    Do you have the data field in the templae set right?
    Attach the template here if you can after taking out any sensitive company information you might have on it.

  • My Library (History/Show All History) does not show ANY History - only Tags & "All Bookmarks". What settings do I need to adjust to have this show. Nothing in the Options/Privacy seems to be relevant

    My Library (History/Show All History) does not show ANY History - only Tags & "All Bookmarks". What settings do I need to adjust to have this show. Nothing in the Options/Privacy seems to be relevant in English

    Lightning is a problem for you because it hooks into Thunderbird at a low level and you need a version compiled for the platform Thunderbird is running on. So you can't do the preferred solution, which is to put your whole profile in a shared folder and have both instances of Thunderbird reference the same profile. (Ditto for Enigmail). Lightning may become an integral part of Thunderbird in an upcoming release, at which point this limitation due to Lightning should disappear.
    And if you can't use a shared profile, you can't set your Lightning, or your Address Book, to share a common set of files. Put another way, the linkage from Thunderbird to its address book files and calendar data is hard-coded, and not exposed where we can adjust it. :-(
    The halfway house is to place your mail stores in a shared place, and use the Local Directory setting in each account's settings to connect to it. They don't need to be in the profile; what's more important in your case is that they are in a folder accessible to both operating systems.
    Look in your profile; everything under Mail and ImapMail needs to be moved out to a shared folder. Note the entries in Thunderbird under Local Directory before you do this, and reconstruct those pathnames in Thunderbird, but adjusted to suit their new locations.
    (You can see here that you need to make many adjustments, one per account, in each instance of Thunderbird, so it's a high-maintenance solution and this is why we don't recommend it when the alternative, moving the whole profile, is possible.)
    I share address books and calendars between Thunderbirds on various computers (and my phone and tablet) by syncing to something in the cloud; Google Contacts and Google Calendar are my choices, using gContactSync and CalDav.
    Having made the break myself some years ago, I'd recommend you break away from Windows. ;-)

  • Any TextFrame Created on Server will not show as tagged on desktop

    Hi All,
    related to an eariler post - if I create "any" text frame on InDesign Server, it will not show as tagged when opened in desktop.
    I run the following code on InDesign Server CS3:
    var doc = app.documents.add();
    var frame = doc.pages.item(0).textFrames.add();
    //..set geometry...save document...
    When I then open the document in desktop and tag the frame, it all works functionally but the frame will not display as tagged ("ie View..Structure..Show Tagged Frames").
    If I add a new frame to the same document (via UI) and tag it - it all works fine.
    If I copy the server generated frame - it will still not display as tagged.
    Strange, and very annoying! Has anyone else come across this issue.
    Can anyone else replicate it for me so I know I'm not mad or have some dodgy install?
    Cheers, Scott

    Scott,
    I see the same problem, so no, you aren't crazy. I tried running the same javascript from within InDesign, but that text frame draws correctly. So, it doesn't look like it is a scripting problem, but a problem unique to InDesign Server.
    Susan Doan

  • ID3 tag information not showing up on imported files

    I've only had my iPod for a couple of days and I'm working right now on importing all my computer's mp3 files into iTunes, using "add folder to library." Most of the time it's going fine, but for some files the ID3 information will not show up for no apparent reason when it is definitely there (it shows up fine in Winamp etc)--sometimes it will even be only a few songs in a folder with the others working! I have no idea what to do, and when I search the forums all I can find is other people having the same problem but no answers. Someone help please?
    Dell Inspiron 1501   Windows XP  

    In iTunes, select all the songs.
    Go to menu Advanced -> Convert ID3 tags.
    Select ID3 tag version: V2.2.

  • People and Face Recognition tags not showing up under People page after converting to PSE11

    Hi Forum
    Upgrade from PSE 10 to PSE 11
    Beware, having just spent over 3 hours using the face tagging feature in Elements 11 (because it does not use people tags from earlier versions to populate the new People Tab). I can only say the result was less than useless. I now have over 1200 images tagged with the wrong people and multiple wrong people at that. And worse still the person that should have been tagged is not there at all!
    I noticed that during the tagging process the image displayed to provide a name for is not the image when selecting full screen view - it actually displays another image. So my guess is it is not actually tagging the face you see but applying the tag to the image it actually thinks it is.
    Therefore the result is utter garbage.... What a waste of time and effort. Not happy at all. When will Adobe release working software, hard lesson learned here.
    Regards
    David
    Message title was edited by: Brett N

    Hi Andaleeb
    Yes this is definately frustrating - what should be a simple process during the upgrade from 10 to 11 is a painful manual task to correct afterwards.
    Okay I restored the catalogue which contained the original people tags. But because they were called named 'Family' they are not treated as People in People Tab. So I changed the name Family to People and then yes the images started to appear in the People Tab. But there are groups of people such as my wife and sons who are not imported into the People Tab because (I think) they are a sub level below me. So are ignored in People import process. Viewing images in Media View shows they are marked with a 'Group' icon but still these do not show up in People - Groups. The tags are shown when clicking 'Groups' but when selecting one shows the message 'no people exist in this group'. So how do i get them in? I can't find a way of changing the person concerned to have a non group tag like the other images that were recognised as people. I hope this makes sense.
    Help appreciated.
    Regards
    David

  • Why are my tags not syncing for a shared email account? IE One person tags an email as "Work" but it does not show on other users Thunderbird.

    Subject says it all for the most part.
    A shared email account we'll call "[email protected]" is not syncing tags across other end users Thunderbird. User A will tag an email as Work but it will not sync/show on anyone else's application. I've read that Thunderbird stores tags locally now? Is there a way to sync them up to our IMAP server? Or would we have to revert to a previous version of Thunderbird (if so which)?
    Any help is greatly appreciated. Thanks

    the issue is probably that the server does not support tags..... Thunderbird stores them locally, but syncs them were the server supports it.

Maybe you are looking for