Strange tags in TaggedText File

Dear,<br /><br />I was wondering if anybody here could help me with this.<br /><br />I'm trying to script the creation if Tagged Text files.  In my output however i get the following:<br /><br /><cLanguage:><cFont:><ParaStyle:5-titel><cLanguage:English\: USA><cFont:Times>Fiscaal gezien interessante cinema?<br /><br />Can anybody tell me what makes the first 2 tags (<cLanguage:><cFont:>) come up here and how i could delete them?<br /><br />Any help would be appreciated.<br /><br />Thanks,<br />Jo.

Here is the image.
Yes some text is deformed, some not.
If I paste the text in another file, it turns out right again
hope this helps anwering

Similar Messages

  • Strange tags in master pages - any idea how they got there?

    NOTE: This issue is related to my posting (1/2 way down) in http://forums.adobe.com/message/4539747#4539747
    but I wanted to start a new thread to separate it as its own problem.
    I just noticed that when I create a new topic, I see this unusual local formatting <p class="TABELBODY"> tag in HTML view (see below, 4rth line from bottom). This is where the mysterious "TABLEBODY" formatting is originating that I've been plagued throughout my current project.
    If I delete the default text in this new topic (in Design mode), this <p class="TABELBODY"> still winds up in the topic when viewing in HTML view (see below, 3rd line from bottom).
    When you start adding new text in the topic in Design mode, it attaches itself to your first line of text as local formatting (see below, 9th line from bottom):
    When you view the topic in Design mode and place your cursor on the first line of text, you'll see this local formatting TABELBODY display in the syle dropdown (see below).
    I decided to open up a new topic using my other master page, and also noticed strange tags in it  (<?rh-region_start type="body" ?> ). See below, 3rd and 12th lines from bottom.
    Consequently, I finally figured out that both my master pages had junk HTML tags in them, which carried over to all of my topics. I have now fixed the master pages by editing out the junk in the HTML mode.
    I did some further investigation and found out that the originating project that was the basis for my current project also had master pages with the same tag issues. So now I'm wondering, how did this start? Maybe someone imported a RH html output file into a project by mistake a long time ago, and it corrupted the master pages right up until this time? Or, could it have been from upgrading from RH 7 to 9?

    Boy, this is really getting stranger by the moment...every time I think I have solved a problem in RH, another layer of problems emerges...
    I made the minor edits on my two master pages to get rid of the junk tags shown above and did a Save All. Here is the result (see screens below):
    Master Page 1 After Edits
    Master Page 2 After Edits
    That's ALL I touched. However, now when I view any topic using these master pages with either the Preview mode (eyeglass icon) or as a final output file, the default text from those master pages displays on top of the topic. Interestingly enough, the master page text does NOT display in these topics in Design mode.
    Preview Mode of Topic Using Master Page 1, Displaying Default Text from Master Page 1 on Top
    Preview Mode of Topic Using Master Page 2, Displaying Default Text from Master Page 2 on Top
    HTML View of Topic Using Master Page 1
    HTML View of Topic Using Master Page 2
    I'm crying "uncle" now - help!!

  • Missing ID3 Tags on Song Files

    I have a obscure problem with iTunes that has me very frustrated. I selected my entire music library, then right click -> get info -> check boxes for artist, genre, album, etc and then hit okay. I thought this would look for missing tag information in songs and fill in the blanks, but instead it erased the tag information for all the songs in my library.
    Luckily, my hard drive was spared. When I open up the C: drive and look at my music folder, nothing has changed. All of the mp3 files are still tagged with the correct information. The only problem is that when I try to access songs from iTunes they appear to have no such tag information.
    I have tried fixing this by deleting everything from iTunes and then adding it all back, but this didn't help. Reinstalling iTunes and a full Windows system restore didn't help either.
    The result of this is that I'm afraid to sync my iPod with my computer until this is all resolved. Any insight into the problem would be greatly appreciated. Thanks.

    Ooops. You just created a lot of work by erasing the tag info.
    I think there are some scripts out there that can fill in ID3 tags based on file names.
    This page is from an apple discussions regular poster:
    http://samsoft.org.uk/iTunes/scripts.asp
    You could try the "TagFromFilename" script.
    For future, itunes does not have the ability to update tag info like Windows Media Player does. I suppose you could see what WMP will do, before trying that script.
    Since I haven't used either one to do this, I can't say how well either works.

  • How do you force itunes comments to ID3 tags in MP3 files?

    I have comments all throughout itunes. The mp3 files do not have those comments in the ID3 info.
    How do you force itunes comments to write out to ID3 tags in MP3 files?
    The folder and files all have write permission.

    Yeah, don't do that, you probably also degrade the sound quality... If you've confirmed it is something odd with multiple tags try this.
    Select a group of mp3 files (You might want to start with a smart playlist so you don't mess with any other format)
    Right-click and use Convert ID3 Tags > None (may need to repeat this step if multiple tags)
    Then right-click and use Convert ID3 Tags > v2.3 (v2.4 support still patchy from various accounts)
    Downside is that it will lose any embedded artwork, but it should preserve all other meta-data, both tag-based and stored within the library itself.
    In fact, if you use my CreateFolderArt script before and after updating the tags it should archive any artwork as a local Folder.jpg image for each album and then reinsert that image on the subsequent run... Check it out on a single album first. If it doesn't work as expected let me know and I'll tweak the script to achieve this end.
    tt2

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • HTML tag input type="file"

    hello!
    i used the html tag <input type="file" name="fp"> to have a browse File in my html Page and succesfully gets the file,path and directory when i used fp.value on my windows but when i Load the Html file in Linux
    i only get the filename (excluding the Path)
    can someone tell how to get through this any solution ?
    nid yur help badly!
    Gud day!
    p.s. i used a javascript to get the pf.value.

    Here is a solution:
    Post your question on a relevant forum. These forums are for Java. Java is not Javascript. Javascript is not Java.

  • ITunes not picking up on tags from AAC files ripped using Toast 9

    I am trying to rip CD's into AAC files using Toast 9. When I import them into iTunes, they have next to no tags - only artist, album, and song title. I don't know if the problem is with iTunes or Toast 9 at this point. Is there a way I can see all the tags on a file outside of iTunes? Has anyone else had this problem? Of the discussion topic, but does anyone know how to make Toast 9 write the tags?

    Good question. I feel that Toast provides a better rip, at least that's what my ears tell me. It's looking more and more like I'll have to use iTunes, despite haiving bought Toast 9 just for ripping. As a guy just switching from PC I'm getting kinda frustrated with a lack of options. I have to say, Easy Media Creator works a lot better and more intuitively than Toast.

  • PSE5 not writing tags to photo files

    Having invested hours, weeks, and months in the process of tagging my many thousands of family photographs within PSE5, I am dismayed to find that having taken the manual step of writing the tags to the files, that only some of them have indeed done so. Quite a few of my photo files are showing up in Windows Explorer with the tags I have given them safely in place - great. However, twice as many appear to not be tagged at all. Can anyone explain to me what has happened and how I can rectify it, please? The prospect of having to tag them all again leaves me wanting to go and stick my head in a blender.
    A second problem is that, inexplicably, PSE5 recently started creating duplicate photo files with a "edTMP" suffix - they recreate the exact same file with the exact same file size. The only difference is that, where tags have been saved to a photo, the "edTMP" version does not include the tags. So, I just delete these files, but with the number that PSE is creating, it is a very time consuming job. Does anyone have any idea why this is happening and how I can stop it, please?
    Many, many thanks in advance to anyone who can help me rectify these really maddening issues. Thanks! And best wishes.

    First problem - It might be possible that while using 'Write keyword tag and properties info to photos' option, Organizer may have shown some errors (saying like 'Skipping invalid files'). As a result write operation may not be applied on some files. This may happen if there are some permissions issues with images. Please check that all your files are writable.
    Second option - This is an extension of first problem. Whenever Organizer fails to do any file operation (in your case 'Write keyword tag..' option), it creates a temp file. There is no way of deleting these files from withing Organizer (you need to delete them manually).
    ~Andromeda

  • [svn:fx-trunk] 5067: In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files

    Revision: 5067
    Author: [email protected]
    Date: 2009-02-25 08:21:22 -0800 (Wed, 25 Feb 2009)
    Log Message:
    In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemComboBox.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemDataGrid.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemEnumerationMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemHistoryButton.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemList.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemSizeDisplayMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemTree.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/FlexHTMLLoader.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/IWindow.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/StatusBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/TitleBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/AIREvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FileEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeMenuEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeWindowBoundsEvent .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/WindowExistenceEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/NativeDragManagerImpl.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/ApplicationTitleBarBack groundSkin.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/StatusBarBackgroundSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowBackground.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowCloseButtonSkin.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMaximizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMinimizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowRestoreButtonSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumeration.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumerationMode.as

    I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
    It's similar to this problem.
    http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
    Does anyone have a solution or at least a way to debug this?

  • [svn:fx-trunk] 8583: Add ASDoc version tags to AIR files

    Revision: 8583
    Author:   [email protected]
    Date:     2009-07-15 10:21:01 -0700 (Wed, 15 Jul 2009)
    Log Message:
    Add ASDoc version tags to AIR files
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Checkintests: passed
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/CloseB uttonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Grippe rSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacClo seButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacMax imizeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacMin imizeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacTit leBarSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Maximi zeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Minimi zeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Restor eButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/TitleB arSkin.mxml

    Thats good news.

  • Setting MP3 ID3 tag renders mp3 file useless

    Hi guys,
    I'm using the Java MP3 class Library from www.id3.org and am trying to set the artist and title of my mp3s.
    If anyone has used this library, do you know how I might set this information?
    I've tried using the TagContent object supplied by getArtist() and getTitle(), furthermore I have tried creating a new TagContent and applying the tag to the file, but it just throws exceptions when I next try to read this information from the file.
    e.g I have tried this:
    MP3File f = new MP3File(new File("D:/"),"1999_Prince.mp3");
    TagContent tc = f.getArtist();
    tc.setContent("PRINCE");
    f.setArtist(tc);
    f.update();and also this:
    MP3File f = new MP3File(new File("D:/"),"1999_Prince.mp3");
    TagContent tc = new TagContent();
    tc.setContent("PRINCE");
    f.setArtist(tc);
    f.update();This example only changes the artist to capital letters (I'm just experimenting with the code), but it means when I come to read the file again, I can't read the artist.
    Thanks in advance for any ideas,
    Richard

    Hi,
    I just tried it out too, I was lookin for some java mp3 classes and these look great. I used your code to rename a couple of files as a test and it worked. Onlt difference was I used the single string constructor rather than the (file, String) one. I think that it might be interpreting your D:\ as being the name of the file and it cant find it. I'd try the String,String constructor instead eg ("D:\","file name"). These classes look really interesting. I might create a decent java mp3 editor with um at some stage if I get time!
    Kemal Enver
    [email protected]

  • Strange tags

    Hi,
    I have an application developed in HTMLDB 1.5 and I imported this into an workspace which is in 1.6.
    The application seems to work fine but I see these strange html tags like <script language="JavaS at the bottom of the page. It varies from page to page, sometimes it is like <script lang. This happens when I am in the developer mode.
    When I am in the user mode I see tags like </,</t,</tr in one of the report regions. I am not able to figure out the reason as this is not consistent.
    Also, when I am navigating from page to page I get a page not displayed error with the URL ending in wwv_flow.accept like "/pls/htmldb/wwv_flow.accept". This is also not consistent, sometimes it happens and sometimes it does not. Is there a problem with that particular package when I installed?
    We have a differnt architecture for the HTMLDB 1.6 version. The data and HTMLDB is present on one box and the HTTP server is on the other box. Is this the reason I am getting the page not displayed error??
    Thanks,
    Swaroop

    Hi,
    The strange tags issue was resolved. It was due to a conflict of the charset between the HTTP Server and the Database. Fixing the DAD conf resolved the issue.
    The page not displayed error I think is browser dependent and I could not simulate the error on other and I also cannot reproduce it again.
    So 2 issues solved one more solved, one more to go ie. the one with link all messed up in the report. If anybody has any clue please let me know.
    Thanks,
    Swaroop

  • A strange thing about saving files in Mac OS X

    I've noticed a strange thing about saving files in Mac OS X.
    In the save dialog, you click a folder to save into that folder.
    Well, if you accidentally click a file instead of a folder, the name of the document you're saving is changed to the name of that file! Then you have to retype the name, or cancel out of the process and start over.
    I don't see why you would want to change the name of the file you're saving to the name of a file that already exists, unless you want to overwrite the existing file (unlikely), but maybe there's a reason for this I'm overlooking.

    The Mac OS didn't used to do that. There must have been a lot of requests for it though. Especially from Windows switchers I would imagine, since you've always been able to do that in Windows.
    Sometimes I like being able to pick up the a name I do want to replace right from the Save dialogue. Most of the time though, I think it's a dangerous option. I don't know if there's a way to turn that behavior off.

  • Plz help to get the tag of html file

    hi
    I wants to convert the HTML file into PDF file dynamically.
    So first i wants to get the tag of html file when we pass the path of html file.
    so how i do this plz help me.

    Plz Tell me how I get the HTML Tag through the java code.

  • Updated mp3 tags in PC files vs Itunes

    Hello. Not sure if this has been asked before but could not find a previous post.
    I would like to know if Itunes updates mp3 tag information automatically when I make a change to the file on my PC?
    example: Loaded new album artwork to an MP3 file on my hard drive (dell;xp).
    What do I have to do to make these changes update in Itunes or vice versa other than choosing "Get Info" and make the changes manually?

    rexlibris wrote:
    iTunes maintains all of its info in a database. You can embed most of that data, including artwork, in each and every mp3 file by highlighting the song or the whole album or the entire music library. Then you place the cursor inside the highlighted area and right-click to see CONVERT ID3 TAGS. I have the best luck with v2.3
    This action should only be necessary if you have removed tags from the files. Generally iTunes creates and updates tags as you edit metadata. I'm also pretty sure the OP's issue is with getting iTunes to recognize changes made outside of iTunes.
    tt2

Maybe you are looking for

  • Ical crashes on startup in 10.5.1

    Hi everyone, I upgraded to 10.5.1 today and everything went swimmingly. I then tried to launch iCal and immediately got a crash and error message (see below). I tried several additional times to launch iCal, even after rebooting, always with the same

  • RAC installation hang while running root.sh

    Hi, I'm installing 10gR2 on AIX 5.3 ML05 with HACMP 5.3, CRS & RAC S/W will be installed on local disk, and all other database files, voting disk & OCR are on RAW device on SAN storage. When I was installing CRS and running runinstaller, it prompts m

  • Problem in connecting to SAP XI system?

    Hi @, I have recently installed sap gui on my system and trying to connect to XI using the same When iam connecting to server it is staring on and from XI when I am trying to start Integration Builder it is not connecting giving  "page cannot be disp

  • Creative cloud has no apps and won't let me download any

    Creative cloud shows no apps and won't let me download any, it lets me do the other tabs but I get an error message (no #) when I try.  I have windows 7 pro.

  • Problem in Tab Keys

    Hi I am trying to write a KeyListener that can detect when the tab key is pressed within a JTextField. The Listener detects all keys accept the tab key. It seems that some lower level method is consuming the key before it get to my listener. My appli