Selectively ignore Problem Tags Dialog  while importing Tagged Text in CS5.5

Hi
My script imports tagged text and places it in selected frames. Due to the tag creation process used, I occasionally get a "Ignoring character level attribute termination tag "<cTracking:>" found without the corresponding character level attribute application tag "<cTracking:value>"
Since it's not a problem I can ignore this specific error -- but I don't want to turn off ALL problem tag error checking because occasionally there are serious errors that I DO want to see.
Is there a way to tell ID to ignore this specific error?
Thanks
Akiva

UNfortunately the original ascii files uses a <D> code to return to the default settings -- and since that occasionally includes resetting the tracking to 0 I need to include the "<cTracking:>" tag.
I could obviously fix it by adding a "<cTracking:0>" to all the codes -- but that seems like it could cause more problems.
I can preprocess the ascii code to eliminate the excess codes -- but that increases processing time for something which happens only occasionally and is non-problematis in practice.
Akiva

Similar Messages

  • Move tags to from imported tags?

    I had my PC crash & I reinstalled PSE 10.  Since I could not find my old B/U at this time or the catalogue I just told the program to look in an old 'My Pictures' folder & import from there.  This worked OK & all the pictures were imported including the tags.
    My current problem is that all of these old tags appear as imported tags rather that where you normally create tags which is further up that same column.  Is there anyway to get the tags back to there normal state & not appear as being imported & if so how is this done?
    Thanks in advance,

    You can re-create the original tags and categories hierarchies, but it's a manual task involving 'editing' everyone of the imported tags.
    First, try to re-create as much as possible your categories hierarchies. By default, you have only the main categories : people, places etc. Re-create the categories and subcategories you can remember (don't worry if that is only a part of the initial tree).
    Then, for each tag in the 'imported keywords' category, right click on the category and choose ' edit keyword'. In the dialog, replace the default (imported...) category by the correct one in the drop down list of existing categories/subcategories.
    Edit:
    You did the right thing when you saved the metadata to files. Another useful feature of the Organizer is that you can save the categories tree to a text file, and recreate it in a new catalog or add it to an existing catalog.
    In the keyword panel, next to the + sign, you have a small triangle : click on it to see a drop-down menu with one option 'Save keyword tags to file'. This will save the tree (hierarchy) either to restore it or to add it to an existing category hierarchy.
    If you have to repeat your procedure by reimporting your media in a new catalog, restore the categories before you reimport your media.

  • Error while importing a text file for a list of values

    Hi Experts,
    While importing a text file for a list of values in designer, I am getting error message as below:
    "Invalid setting in Excel key of the Engines section of the Windows Registry. (3433)".
    I am using BO XI R3. Universe Designer version : 12.1.0.882
    Any suggestion ?
    Regards

    plzzzzzzzzzzzzzzzzz.............sme1 help me out

  • I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    Look up "formatting" in the User Guide.
    http://manuals.info.apple.com/MANUALS/0/MA524/en_US/Pages_UserGuide.pdf

  • Sequence tag error while importing the SSL certificate into ".keystore" fil

    I have created the ".keystore " file successfully and also imported the "root.cer".
    but while importing the SSL certificate it says like
    "keytool error: java.security.cert.CertificateException: IOException: Sequence ta
    g error" (I got the certificate from Verisign)
    How to resolve this Error?
    can anyone help me?
    mail to:: [email protected]
    Thanks in Advance

    Hi,
    I resolved this error by making it sure that there are no extra spaces or unwanted caracter copied while copying the certificate response from the CA. Make sure you are copying the certificate response properly. In my case, some extra space was getting copied so after re-copyinf it properly, it worked.

  • Problem hearing CD while importing. all volumes have been checked.

    I can't hear a CD when it's importing, although all the volumes have been checked. Apple says go to itunes preferences/advanced/importing but there is no "importing" on "advanced" drop-down menu. What settings do I need to have to hear while importing?

    To Apple Discussions!
    Try repairing permissions and then restart your computer afterwards.
    Instead of using compressed air, use a CD/DVD cleaning disc.
    Spinning on head 4 times instead of turning in circles should work also.

  • Suppressing progress dialog when importing Tagged Text?

    Howdy:
    I'm using the Adobe Tagged Text import provider to place text in a document. I'm making the call to iImportProvider->ImportThis() with the kSuppressUI flag set. Even though the flag is set, InDesign is still displaying the progress dialog. Does anybody know how to keep that from happening? I don't see anything in the documentation about this.
    Thanks,
    Noel Williams

    Hello:
    I have the same problem that Noel.
    I'm using:
    * prov->ImportThis(database, stream, kSuppressUI, &contentUIDRef);
    * prov->ImportThis(database, stream, K2::kSuppressUI, &contentUIDRef);
    * prov->ImportThis(database, stream, (K2::UIFlags)0, &contentUIDRef);
    But the progress Dialog appears.
    This problem is critical for me.

  • [IDCS3 WIN] Assert while importing tagged text

    Hi,<br /><br />I use the following code to import a tagged text from a buffer into a text frame:<br /><br />IDataBase* database = frameUIDRef.GetDataBase();<br /><br />InterfacePtr<IHierarchy> frameHierarhy(frameUIDRef, UseDefaultIID());<br />int32 count = frameHierarhy->GetChildCount();<br /><br />InterfacePtr<IMultiColumnTextFrame> textFrame(frameHierarhy->QueryChild(0), UseDefaultIID());<br /><br />if( !textFrame )<br />return UIDRef::gNull;<br /><br />UID storyUID = textFrame->GetTextModelUID();<br /><br />InterfacePtr<ITextModel> textModel(database, storyUID, UseDefaultIID());<br /><br />if( !textModel )<br />return UIDRef::gNull;<br /><br />UIDRef result = UIDRef::gNull;<br />InterfacePtr<IK2ServiceRegistry> services(gSession, UseDefaultIID());<br />InterfacePtr<IK2ServiceProvider> service(services->QueryServiceProviderByClassID(kImportProviderService, kTaggedTextImportFilterBoss));<br />InterfacePtr<IImportProvider> prov(service, IID_IIMPORTPROVIDER);<br /><br />InterfacePtr<IPMStream> stream(StreamUtil::CreatePointerStreamRead(taggedtext, strlen(taggedtext)));<br /><br />if (prov->CanImportThisStream(stream) == IImportProvider::kFullImport)<br />{<br />database->BeginTransaction();<br /><br />prov->ImportThis(database, stream, K2::kSuppressUI, &result);  //This line generates the Assert<br /><br />if (result != nil )<br />{<br />Utils<ITextUtils> textUtils;<br />InterfacePtr<ICommand> moveAllStoryCommand(textUtils->QueryMoveStoryFromAllToAllCommand(result, ::GetUIDRef(textModel)));<br />CmdUtils::ProcessCommand(moveAllStoryCommand);<br />}<br />     <br />database->EndTransaction();<br />}<br /><br />It works fine, but when "ImportThis" is called i get this:<br /><br />ASSERT 'fCmdProcessorState == kDoing || fCmdProcessorState != kNotProcessing || cmdMgrRef.GetDataBase()->GetUndoSupport() == IDataBase::kNoUndoSupport' in ..\..\..\source\components\appframework\commandmgmt\CommandProcessor.cpp at line 2889 failed.<br /><br />Any help would be appreciated.<br />Thanks in advance, David

    I would say the problem here is in using database->BeginTransaction()/EndTransaction(). Basically you should never call these methods - you need to find/create a command to do the processing instead, then perhaps wrap the two commands in a command sequence.
    I know there was a post saying ' don't use those methods' a long time ago by Ken Sadahiro (then of Adobe) - you might find it with a search, though will have been archived by now.
    Ian

  • Fcp x 10.0.9 I can't select in and out points while importing media, and scrubber won't work in event browser.

    I have two problems, and I have already un installed and reinstalled FCP X, and still have the issues.
    1) In the import media window I can no longer select my in and out points to import. Pressing  the "I" and "O" keys, I just get the audible error beep.
    2) in the event browser I can select the in and out points, but it will no longer scrub through the clip with the cursor.
    I do have OSX Mavericks installed, but the issue was prior to the install.
    Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,2
      Processor Name:          Intel Core i7
      Processor Speed:          2.2 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          6 MB
      Memory:          16 GB
      Boot ROM Version:          MBP81.0047.B27
      SMC Version (system):          1.69f4
      Serial Number (system):          C02FV4Q9DF91
      Hardware UUID:          E3FD9128-C34D-5DA8-B18A-6AA9B541386E
      Sudden Motion Sensor:
      State:          Enabled
    David Cameron

    Tom, perhaps I used the wrong terminology, skimming not scrubbing. In the event browser on the thumbnails of my clips, I recall being able to skim to a point and then select the in and out points. It apparently is solved. I guess the reinstall fixed it. Well like taking your car to a mechanic its not making the clicking sound now.
    As far as the import. I think  by your response you solved the problem. I can select the in and out point when I import from a camera or my iphone, but I did not realize you could not select the in and out points from a video file already on my hard drive.
    I appreciate your responce, and have a great day.
    David Cameron.

  • Workflow problem - keeping keywords while importing into Lightroom

    I am working tethered to a laptop, and need to put in keywords for each product I shoot. I do this in LIghtroom, and drag those images to an external drive. Then, I take the hard drive to my office desktop Powermac, and import these into my LIghtroom database on that computer. When I do so, I check "none" for metadata information to apply, and when my images import, the keywords are gone. What am I doing wrong? I spent hours entering all that data.
    Many thanks for any help or better workflow in general.
    Lynne

    The keywords are stores in the catalog, not in the picture - specially not in the raw file. LR never touches the raw files which is one of the main concepts of LR. Everything you do is stored in the catalog and/or in a sidecar xmp file, depending on your settings.
    Obviously, if you simply copy/move the raw files non of all your settings and keywords is coming along. You could copy/move the raw file and the xmp sidecar file - that will carry your settings. If you export, you export a picture with all your changes made to the picture and with keyword in the metadata. However, you can not export in any raw file format. If you need raw on the other machine you can as well look into dng: converting to dng upon import and exporting to dng. The dng file does not use an xmp sidecar file, it has all the metadata stored in itself.
    HTH
    Franz

  • [HELP] using multiple value parameter in c:import tag

    I need to pass a multi-value parameter to a included page. e.g.
    http://myhost/MyContext/dir1/page1.jsp?abc=value1&abc=value2/dir1/page1.jsp includes /dir2/page2.jsp, and would like to pass this multi-value parameter over, but change the name to xyz, some what like
    <c:import url="/dir2/page2.jsp?xyz=value1&xyz=value2"/>The problem is that the number of values is not fix number, so I have to write some logic to iterate thru its parameter values. But the <c:import> tag body allows only simple listed <c:param> tags, it doesn't allow other logic/condition/iteration.
    <!-- gives java.io.IOException: javax.servlet.jsp.JspException: The taglib validator rejected the page: "Illegal child tag in "c_rt:import" tag: "c:forEach" tag at runtime -->
    <c:import url="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:import>{code}
    I also tried <c:url> tag. The good news is that it supports jsp logic in body:
    {code}<c:url var="url" value="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:url>
    <c:out value="${url}"/>{code}but it prefixes the url with the current context:
    {code}/MyContext/dir2/page2.jsp?xyz=value1&xyz=value2{code}
    Now I run into a dead end. It seems the only way out is to use <% %> scriptlet to do my own url composite, which is pretty similar to <c:url> but avoid the context part.
    Any suggestion?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    out.println("<html>");
    out.println("<head>");
    out.println("<script language=\"JavaScript\">");
    out.println("function altSubmit() {");
    out.println("document.MyForm.action = \"Second.html\";");
    out.println("document.MyForm.submit();");
    out.println("}");
    out.println("</script>");
    out.println("</head>");
    out.println("<body>");
    My personal suggestion is to use follow the MVC (Model View Control) pattern where in you can write all your "html" part in a JSP.
    Model -> Bean
    View -> JSP
    Control -> Servlet

  • Deleting imported tags--does that apply across all catalogs?

    I'm building a brand-new catalog in Elements Organizer 12.  My first attempt turned into a hot mess with broken links, etc (I started it before I really figured out how Organizer works).
    Organizer is listing a bunch of imported keyword tags on my new catalog.  They don't appear to be attached to pictures in my new catalog, but they're listed under imported tags.  As the purpose of creating the new catalog was starting from scratch, I'd like to clean up those old tags.
    My question is: will deleting those tags also delete them from photos from the original (hot-mess) Organizer catalog?  I'm not ready to delete that old catalog yet, and I'd prefer to leave them attached to the photos in the old catalog for the time being.
    Thanks for any help!
    Julie

    If you find the tags in the 'imported tags' category are really written to the files themselves, it would be better to move those tags from the 'imported tags' category to a more suitable category. If you deleted those imported tags from the catalog, that will not delete the tags from the files themselves, which is generally a good thing. But there will be no way to get them back in the catalog afterwards. The tags in the files are recognized only at the time of import into the catalog. If the tag is in your categories by that time, no problem. If you have no corresponding tag at the time of import, the tags are imported in the default 'imported tags' category.

  • JSTL c:import tag question

    HI
    I have a question about how the <c:param> tag interacts with <c:import> tag.
    <c:import> tag can be used to import from relative URL's like <c:import url="target.jsp" /> , from absolute urls like <c:import url="http://www.espn.com" /> or from another web application on the same server by specifying the context attribute like <c:import context="/myotherwebapp" url="some.jsp" />
    we can use <c:param> tag as an optional child tag for <c:import> to send request parameter to the page it is loading. For absolute url sending request parameters makes sense beacuse the import will be treated as new request and original request object will not be passed . but for relative urls and including the page in different web application on same web server does the jsp container treat it as part of same original request and does the target page have access to the original request object ? if this is true then how can you set additional request parameters on the request object? because once the request object is craeted by jsp container you can only add/remove attributes on it but you can never add parameters on it.
    Now if the jsp container always creates new request object for each of the above included pages then these pages will not have access to original request parameters entered by the user. Is that not a limitation.
    I am a little bit confused . hopefully somebody can help me out.
    thanks

    the c:param tag are added to the url and are not set as request parameter.
    <c:import url="target.jsp">
       <c:param var="test" value="val">
    </c:import>then is will do an import like
    <c:import url="target.jsp?test=val"/>

  • Problems importing tagged text

    IDD CS5.5, 7.5.2
    what I do
    prepare IDD tagged text file, using DOS/Windows line ends and ANSII encoding
    open IDD CS5.5 file with formatted content
    select all content
    File > Place InDesign tagged text file, using "show list of problem tags" option
    what I get
    no angle brackets imported, no errors in the list of problem tags …
    74 paragraphs, all using the first paragraph style specified in the tagged text
    I wish IDD tagged text were as easy to get on with as FrameMaker's MML … that would also make it easier for me to start with one tagged source file and use the content in different applications with a minimum of effort. Any tips on _exactly_ what has to be done to placate the IDD Import goblins welcome!

    Give this script a try:
    // DESCRIPTION: This InDesign script reads the tags of an imported MML file and applies their corresponding paragraph styles.
    // USAGE: Place the MML file in InDesign. Using the Text tool, select all or part of the imported text. Run this script.
    var myDocument = app.activeDocument;
    if (app.documents.length != 0){
    //If the selection contains more than one item, the selection
    //is not text selected with the Type tool.
    if (app.selection.length == 1){
    //Evaluate the selection based on its type.
      switch (app.selection[0].constructor.name){
       case "Character":
       case "Word":
       case "TextStyleRange":
       case "Line":
       case "Paragraph":
       case "TextColumn":
       case "Text":
        convertMML(app.selection[0]);
       break;
       default:
        alert("Please select all or part of the text using the Text Tool.");
       break;
    } else {
      alert("No valid selection.");
    function convertMML(theSelection) {
    // this sequence collects the names of the paragraph styles in the MML file
    var theContent = theSelection.contents;
      var theParagraphs = theContent.split("\r");
      var theParagraphStyles = [];
      for (var i = 0; i < theParagraphs.length; i++) {
        if (theTag = theSelection.paragraphs[i].contents.match(/<!DefineTag (.+?)>/)) {
          theParagraphStyles.push(theTag[1]);
    // ********* this sequence adds dummy paragraph styles in the document, if necessary
    for (var i = 0; i < theParagraphStyles.length; i++) {
      var currentStyle = theParagraphStyles[i];
            try { myDocument.paragraphStyles.add({ name: currentStyle }) } catch(err){};
    // ********* This sequence set the preferences of the Grep queries
    app.findChangeGrepOptions.includeFootnotes = true;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = true;
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    // ********* The action begins here
    // ********* This sequence removes spaces and/or TABs in the beginning of the lines
    app.findGrepPreferences.findWhat = '^\\s+';
    app.changeGrepPreferences.changeTo = '';
    myDocument.changeGrep();
    // ********* This sequence consolidates multiple paragraph returns into one
    app.findGrepPreferences.findWhat = '\\r\\r+';
    app.changeGrepPreferences.changeTo = '\\r';
    myDocument.changeGrep();
    // ********* This sequence removes the header and the paragraph declarations
    app.findGrepPreferences.findWhat = '((^<MML>\\r)|(^<!DefineTag .+?>\\r))';
    app.changeGrepPreferences.changeTo = '';
    myDocument.changeGrep();
    // ********* Now that everything is cleared up and in place, we can make the required changes
    for (var i = 0; i < theParagraphStyles.length; i++) {
      app.findGrepPreferences = NothingEnum.nothing;
      app.changeGrepPreferences = NothingEnum.nothing;
      var currentStyle = theParagraphStyles[i];
      var theGrepString = '^<' + currentStyle + '>';
      app.findGrepPreferences.findWhat = theGrepString;
      app.changeGrepPreferences.appliedParagraphStyle = myDocument.paragraphStyles.itemByName(currentStyle);
      myDocument.changeGrep();
      app.findGrepPreferences = NothingEnum.nothing;
      app.changeGrepPreferences = NothingEnum.nothing;
      app.findGrepPreferences.findWhat = theGrepString;
      app.changeGrepPreferences.changeTo = '';
      myDocument.changeGrep();
    It worked in your sample. To install it, select the text between the multi-hyphens lines, copy it to a text editor, save it with the ".js" or ".jsx" extension and put it on your Scripts Panel folder.
    To run it, place the MML in InDesign as unformatted text, select everything with the Text tool and double click the script in the Scripts panel. All the tags will be eliminated and the paragraphs will be formatted according with the MML tags. Be aware that this script doesn't contemplate character styles and any other formatting; only paragraph tags, like your sample.
    Hope it helps.

  • a tag is creating error in import XML in InDesign CS5.5

    Hi All,
    I am doing upgrade from InDesign CS2 to InDesign CS5.5.
    I have indt file. It has been designed using the CS2 and now converted that indt file into CS5.5 using InDesign CS5.5.
    But I am facing some serious issue while doing export to pdf in CS5.5 version.
    I am following below steps:
    1) Open indt file.
    2) File Menu --> Import XML... [This XML file contains <a href="website link"> html tag]
    3) XML Import Options [no change- defalut options selected]
    4) Ideally it should merge this XML data with the indt file but it is asking me for some input and showing me "Find:" dialog [Check below snapshot]
    I did some research and find out that I am getting this Find dialog because of the <a> tag in XML. when I removed the <a> tag from XML then it didn't give any dialog box and imported XML without any issue.
    I am getting that xml from system and I cant remove the <a> tag from xml manually.
    However I was not getting any error while doing import XML in CS2 version.
    Please can anybody help in this?

    When there is "http://" in anchor tag it will pop up this input window in manual export from indd/indt to pdf and it will failed in export through action script.
    I communicated with the Adobe and it was bug. Adobe has confirmed that they would realease the patch for same sometime later, but I have not heard of anything. I got work around by removing it "http://" using java.

Maybe you are looking for

  • Back up iPhone to another new windows pc

    my windows pc just got crashed and all my back-up was inside the harddisk. now my iphone 4s has some issue to activate my imessage and facetime using my mobile number, the tech help need to reset my phone, how do i do i new back up of all my contents

  • Slow performance of iTunes store with TV show favorites?

    I am wondering if anyone else has been seeing performance problems with the Apple TV when using the iTunes store and TV show favorites? I am having issues with the iTunes store account when I log into my 'Favorites' for TV programs. It takes a LONG t

  • Ipod cannot be updated (-50 error) when trying to upload album art

    For some reason, when I check the "Display album artwork on your ipod" box, I'll end up with an -50 error, even though the album art is already in iTunes and I can upload songs/photos/videos just fine. Latest version of iTunes and iPod FW. I've tried

  • I need to find the original library of my iPhotos

    Hi Terence, by mistake i clicked on the "create new" project when iphoto opened. ive lost all pictures and videos fo my childrfen over the past two years. i do have copies on an external hard disk so i didnt panic, however when i imported back these,

  • ActionListener not firing

    I am currently working on a web app and problem has come up. I'm hoping someone may know about this. The faces page I have has two command buttons for paging forward/back and two combo boxes that act as filters. The page and the filters are all worki