False Overset Text in Links Panel

Mac OX 10.6.4
CS5
This is the problem I'm encountering: When I export to .pdf, Indesign Crashes. I've been able to narrow it down to one specific file and actually specific pages. But here is something I've noticed and cannot figure out. I've got three .psd linked files that are showing up as overset (OV) in the links panel, therefore when I click on them ID says it can't show me them because they are in over set text. But my live preflight says there is no over set text. ID jumps to pages still when I click that link but that whole story has no overset text. (i.e. not red overset in the outbox and no overset text in story editor mode. I can't figure out where those three linked objects are or how to select them to delete them. Any thoughts?

I would suggest running through the same steps as above (which it sounds like you've done) to see if you can isolate a problem, and in addition you might want to try exporting the stories to InDesign Tagged Text, then create a new file, move over the master pages, and place all the exported stories.
Also, be sure everyone is updated to the 7.5.3 patch.
dcald wrote:
The links panel indicates that the images are in overset text but we know for a fact that they are from a previous issue and are no longer in the ID file. Also, preflight indicates that there is no overset text in the file. It is one flow thoughout the entire file. Attempts to create PDF fail consistently. Each time someone has had to build the file again from scratch which for a file over 60 pages long, is not good for feelings towards the ID/InCopy.
This implies to me that you "recycle" document instead of building a template. ID is pretty stable, but no layout program is perfect and each time you do a save you introduce the possibility of small errors in the file. Somnetimes those small errors become big problems.
You can reduce the risk of problems on recurring publications by creating a template that contains your master pages, color swatches, styles, and any "static" content that might not be on a master page but still does not change from version to version. Each new version should be made from the template, so it is always a fresh second-generation copy.

Similar Messages

  • Image in Links panel displays as overset but may not exist

    I am having a serious problem with an InDesign file and of course the blueline corrections were due half an hour ago. An image is appearing in my links panel as hidden in overset text. There is no overset text showing in my preflight profile. I can't go to the image since it gives me an error message indicating that it is hidden in overset text. This appeared for the first time in the file a couple of hours ago during which time, I have not placed any images.
    Exporting to idml, deleting prefs and other types of options has not helped including going to the structured panel and trying to find the file or preceived file by ID in the Story editor. Is there any other way to remove this image from the Links panel? I believe this is what is also causing my system to slow to a crawl. This is a college schedule which has been linked to InCopy files. I have deleted the links to InCopy in case that was part of the problem but nothing seems to make a difference.
    This is a Mac using InDesign CS5.5.

    It looks like I have to recreate the file, another 6 hours of work after spending all day trying to resolve the issue. I wish it was as simple as just as reflowing it but there are too many column adjustments I had to make, which I try to stay away from, but could not avoid in this file. What is strange is that even after deleting all of the text in this file, all of the images are now listed as OV in the links panel instead of going away. This has happened in the past with InCopy stories but we have been able to delete the links from the panel. Unfortunately, I can't find a way to delete these image links from the Links panel despite the fact that they no longer exist. I will start with a new file and at least flow in the tagged text format but I am now on edge that this could happen again since I do not know the cause.

  • Selecting Overset Text In InCopy CS5 [AppleScript]

    I am trying to fix the AppleScript I used in InCopy CS3 to select overset text in CS5.
    In my old script I tell InCopy to select the overset text in the current story. Simple command:
    select text of last text column of myStory
    In CS5 it now selects the last column in the layout. So in CS3 the last column was defined as the overset set if there was overset text. Now it is the last column. I admit that I think this was a bug in CS3 but it worked for me.
    Now I have no way to select all Overset text. If I run
    set myOverset to overset text of myStory
    This will get me the number of lines of overset text. So I think, if I know the number of lines of overset set, then I can use the total number of lines of text, subtract the number overset lines, and that will tell me the first line I need to select. Doesn't work. If I try to find out the number of lines in a story, the result is less than the number of lines shown to me in Story View. The amount it is off varies.
    Does anyone have any ideas. Also, I have tried to select multiple lines using AppleScript but InCopy doesn't like that.

    Most logical answer would be that for some reason your specific text was not exported as InCopt text (you have to do this for every text story you have and want to be able to edit). If you click on such a text frame, does a name get selected in the assignment and/or Links panel? If not, the text is not an InCopy text.

  • Script for shrinking overset text?

    I use data merge to create labels for guests attending functions. Usually this is around 500-1000 labels at one time. I usually set my text frame on the template page for a large point and then shrink it horizontally (I do this to minimize the number of pages I have to manually edit for overset text). I still get some names where they are long hyphenated names that create overset text.
    Is there a script available where it will recognize there is overset text and then shrink the text down either by decreasing the point size or adjusting the horizontal spread of the text (maybe making it 100% to 80%)?

    Hi,
    You could try this:
    #target indesign
    myDoc = app.activeDocument;
    var textArr = new Array(), mRes, myPit, count, done;
    mFramesToMove = new Array();
    myPit = myDoc.allPageItems;    // array with doc pageItems (masterpages and groups included)
    for (var k = 0; k < myPit.length; k++)
        if (myPit[k].constructor.name == "TextFrame" && myPit[k].overflows )
        textArr.push(myPit[k]);    // array with overset textFrames
    count = textArr.length;
    if (count) mRes = mDialog (count);
    else {alert ("No overset texts found"); exit (); }
    for (var i = 0; i < textArr.length; i++) {
        done = mShrink (textArr[i], mRes);
        if (!done[0] ) {
            alert (done[1] + "\rFill a dialog field with a number");
            exit; }
        if (mFramesToMove.length) {
            if (myDoc.layers.item("Overset frames").isValid)
                mLayer = myDoc.layers.item("Overset frames");
            else
                mLayer = myDoc.layers.add({LocationOptions: LocationOptions.AT_BEGINNING, name: "Overset frames"});
            for (var i = 0; i < mFramesToMove.length; i++)
            mFramesToMove[i].itemLayer = mLayer;
            alert ("Some frames (" + mFramesToMove.length + ") stay overset\rTake a look at layer 'Overset Frames' ");
        else alert (count + " frames overset fixed");
    function mDialog (number) {// "What to do" dialog
        var w = new Window("dialog","What to do?", undefined, {closeButton: false});
        w.add ("statictext", undefined, "Number of overset texts found:  " + number.toString() );
        var myTop = w.add ("panel");
        myTop.alignment = "left";
        myTop.orientation = "row";
        var myCheckBx = myTop.add ("group");
        myCheckBx.orientation = "column";
        myCheckBx.alignChildren = "left";
        var Ch1 = myCheckBx.add("checkbox", undefined, "point size limit: ");
        var Ch2 = myCheckBx.add("checkbox", undefined, "hori scale limit: ");
        var myEditBx = myTop.add ("group");
        myEditBx.orientation = "column";
        var Ed1 = myEditBx.add("edittext", undefined, undefined);
        Ed1.enabled = false; Ed1.characters = 4;
        var Ed2 = myEditBx.add("edittext", undefined, undefined);
        Ed2.enabled = false; Ed2.characters = 4;
        Ch1.onClick = function () {
            if (Ch1.value) Ed1.enabled = true;
            else Ed1.enabled = false;}
        Ch2.onClick = function () {
            if (Ch2.value) Ed2.enabled = true;
            else Ed2.enabled = false;}
        var myStatBx = myTop.add ("group");
        myStatBx.orientation = "column";
        myStatBx.add("statictext", undefined, " pt");
        myStatBx.add("statictext", undefined, " %");
        var b = w.add ("group");
            b.add ("button", undefined, "OK", {name: "ok"});
            b.add ("button", undefined, "Anuluj", {name: "cancel"});
        if (w.show() == 1)
            return [Ch1.value, Ed1.text, Ch2.value, Ed2.text];
        else exit();
    function mShrink (textFr, ToDoArr) {    // input textFrame and array with mDialog result
        var pSizeLimAc, pSizeLim, pSizeCurr, pSizeDiff, pSizeStepN, pSizeStep,
            hScaleAc, hScaleLim, hScaleCurr, hScaleDiff, hScaleStepN, hScaleStep,
            ToDo;
        pSizeLimAc = ToDoArr[0];
        hScaleAc = ToDoArr[2];
        pSizeLim = ToDoArr[1];
        if (pSizeLimAc) {
            if (isNaN (parseFloat(pSizeLim) ) ) return [false, "point size is not a number"];
            else pSizeLim = parseFloat(pSizeLim);
            pSizeCurr = textFr.parentStory.pointSize;
            pSizeDiff = pSizeCurr - pSizeLim;
            pSizeStepN = pSizeDiff / 0.1;
            pSizeStep = 0.1;
        hScaleLim = ToDoArr[3];
        if (hScaleAc) {
            if (isNaN (parseFloat(hScaleLim) ) ) return [false, "hori scale is not a number"];
            else hScaleLim = parseFloat(hScaleLim);
            hScaleCurr = textFr.parentStory.horizontalScale;
            hScaleDiff = hScaleCurr - hScaleLim;
            if (pSizeLimAc) hScaleStepN = pSizeStepN;
            else hScaleStepN = hScaleDiff;
            hScaleStep = Math.round(hScaleDiff/hScaleStepN*10)/10;
        if (!(hScaleDiff > 0) ) hScaleAc = false;
        if (!(pSizeDiff > 0) ) pSizeLimAc = false;
        if (pSizeLimAc && hScaleAc) ToDo = 3;
        else if (pSizeLimAc) ToDo = 1;
            else if (hScaleAc) ToDo = 2;
                else ToDo = 0;
        switch (ToDo) {
            case 1: {
                while (pSizeStepN-- && textFr.overflows)
                    textFr.parentStory.pointSize -= pSizeStep;
                    break; }
            case 2: {
                while (hScaleStepN-- && textFr.overflows)
                    textFr.parentStory.horizontalScale -= hScaleStep;
                    break; }
            case 3: {
                while (hScaleStepN-- && textFr.overflows)
                    textFr.parentStory.pointSize -= pSizeStep;
                    textFr.parentStory.horizontalScale -= hScaleStep;
                    break; }
            default: break;
        if (textFr.overflows) mFramesToMove.push(textFr);
        return [true];
    User will be asked for pointSize and horizontalScale lower limit.
    rgds

  • InDesign overset text indicators

    I have a document in which several pages have overset text indicators, but the text is not overset. There is actually space for more text within the text frames.  I have not been able to see how to get rid of the overset indicators.

    You will not be able to remove the overset indicator. But if you are being bothered of that indicator and since preflight panel always prompt you that you have overset text then I suggest that you have to removed those extra spaces you have in every frame.
    Try this one if this will help you.
    Save a copy of your InDesign file. (for Backup purposes)
    If you are using Mac cmd + f or ctrl + f for Windows
    In find change dialog Click GREP and in Find what: field copy paste this [\r]{2,} or this one [\r|\n]{2,}
    Leave the Change to to blank:
    In Search Select Document
    Click Change All
    See Screenshot:
    Always check your InDesign files if you noticed that some text might be missing.
    Hope it helps.

  • [svn:osmf:] 15865: FM-505: Add text to link instead of displaying URL

    Revision: 15865
    Revision: 15865
    Author:   [email protected]
    Date:     2010-05-02 19:22:20 -0700 (Sun, 02 May 2010)
    Log Message:
    FM-505: Add text to link instead of displaying URL
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-505
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/F4MElement.as

    Hi,
    Solution is very simple:
    <af:column headerText="company">
    <af:commandLink text="#{row.Company}">
    <af:setActionListener from="#{row.rowKeyStr}"
    to="#{requestScope.currentRowKey}"/>
    </af:commandLink>
    </af:column>
    On the detail page in PageDef.xml add action (for the same iterator)setCurrentRowWithKey - as argument set #{requestScope.currentRowKey}. Don't forget invoke this action when page is loading setting Refresh Condition= #{adfFacesContext.postback == false}
    Kuba

  • [svn:osmf:] 15864: FM-505: Add text to link instead of displaying URL

    Revision: 15864
    Revision: 15864
    Author:   [email protected]
    Date:     2010-05-02 19:21:01 -0700 (Sun, 02 May 2010)
    Log Message:
    FM-505: Add text to link instead of displaying URL
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-505
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/StreamingURLResource.as

    Hi,
    Solution is very simple:
    <af:column headerText="company">
    <af:commandLink text="#{row.Company}">
    <af:setActionListener from="#{row.rowKeyStr}"
    to="#{requestScope.currentRowKey}"/>
    </af:commandLink>
    </af:column>
    On the detail page in PageDef.xml add action (for the same iterator)setCurrentRowWithKey - as argument set #{requestScope.currentRowKey}. Don't forget invoke this action when page is loading setting Refresh Condition= #{adfFacesContext.postback == false}
    Kuba

  • Any way to export several columns from the Links panel?

    This was originally posted to the InDesign forum, was suggested there might be a script that could achieve this?
    Working on a textbook with hundreds of illustrations. Each Chapter has  up to 100.  Need to get several columns of data (file name and page #  that it appears on) exported from the Links Panel (in sorted order) so  they can be dropped into a spreadsheet. I am using TextWrangler which  will dump out all the filenames in a folder, but it sorts alphabetically  and I really want them sorted by the Page Numbers where they appear.

    This script creates a CSV file on the desktop that you can import in Excel. The file name is the same as the name of active indesign document.
    Kasyan
    var scriptName = "Generate list of links";
    if (app.documents.length == 0) ErrorExit("No documents are open. Please open a document and try again.");
    var page, allGraphics, graphic;
    var text = "File name;Page\r";
    var doc = app.activeDocument;
    for (var i = 0; i < doc.pages.length; i++) {
         page = doc.pages[i];
         allGraphics = page.allGraphics;
         for (var k = 0; k < allGraphics.length; k++) {
              graphic = allGraphics[k];
              if (graphic.itemLink != null) {
                   text += graphic.itemLink.name + ";" + page.name +"\r";
    WriteToFile(text);
    //-------------------------------------- FUNCTIONS ---------------------------------------------
    function WriteToFile(text) {
         var theFile = new File("~/Desktop/" + GetFileNameOnly(doc.name) + ".csv");
         theFile.open("w");
         theFile.write(text);
         theFile.close();
    function ErrorExit(error, icon) {
         alert(error, scriptName, icon);
         exit();
    function GetFileNameOnly(myFileName) {
         var myString = "";
         var myResult = myFileName.lastIndexOf(".");
         if (myResult == -1) {
              myString = myFileName;
         else {
              myString = myFileName.substr(0, myResult);
         return myString;

  • Overset text problem

    Got a short chapter that began life in Word and was placed into ID.  It contains a 2-col table, one of those cols is full of Greek I'd prefer not to retype.
    On page 3 of the doc (the middle), text persistently shows as overset (that red plus sign).  If I click the box to un-overset it, I get a copy of the whole article (six pages or so).
    Cannot get the overset text (i.e., the duplicate copy of the whole chapter) to go away.
    a) tried adding new blank pages at the end, parking the 'overset' text i.e. the duplicate of the chapter there.  And it 'places' fine.  But when I then delete those unneeded dupe pages from the project, the box again shows it's overset.
    b) tried using the "clear" command on the Edit tab.  Similarly, the overset box goes away, but then when I try to make a PDF out of the doc, I get a warning on output that there is overset text on that page, and, when I check the little box, it's again showing overset text.
    This just seems bizarre:  more like a corrupted doc than anything ID is supposed to do.  Thoughts?  Other times I've had overset text elsewhere in the doc, the text has behaved itself.
    Thanks in advance
    CS3, ID 5.0.4

    Several brand-new concepts to me in your post.
    Re story editor, parked my cursor on the offending page, clicked View / Story Editor, everything is grayed out.  Not so sure what the SE is for, must confess.
    "Text content tool" -- I don't see anything named that in my normal panel using float-over tool tips.  Do you mean the Type tool?
    Not sure what exactly I'm clearing:  I've used the Clear command elsewhere w/ good effect, in that overset stuff vanished.  Am guessing I'm clearing frame, not text, given it keeps reappearing.
    Have seen idea of export to INX in other threads; it looked complex so I did not pursue.
    Sorry, you've got a newbie here.

  • Overset text error can't resolve

    Hi
    I'm in ID CS5, and have an overset text error that I can't get to grips with. It says "Overset text: 1 characters" in the preflight box, and I've got a red box with a + sign at the exit to that page's text box. I've tried grabbing the existing text with the cursor and then using click plus alt, shift, and alt/shift to get whatever's overset to flow into the next page somehow, but nothing appears. The text I flowed to begin with is all there - that is to say the text finishes half a page clear of the end of the text frame and the cursor doesn't want to progress any further down any returns or spaces that are hiding there. Any suggestions as to whether this is a bug, or more likely an obvious point I've missed?
    Thanks.

    Story editor has only hide/show changes option available, and doesn't appear to shed any light. When I pick up the supposedly overset text from the red +sign box on the left hand page and then flow it into the right hand page, I get the blue diagonal flow link line to indicate that the text is flowing, but all that I seem to be creating is an otherwise empty text frame on the right hand page (with an empty blue box at the bottom right to indicate that there's no more overset text), but this leaves me with a blank page for no reason. Aaagh!

  • Paragraph going to overset text when it shouldn't

    InDesign CS Version 3.0.1 (2003) for Windows - I've been using this software on an HP desktop 5 days a week for about 2 yrs now, and I've never encountered this problem before. (I am by no means an expert.) I've got an 8 1/2 x 11 document, 1/2" margins, one text box starting 1 1/4" down the page running to bottom margin. I'm typing, typing, typing, then I start a new paragraph about 2/3 down the page (nowhere close to my bottom margin), full justification. At the end of the first line, as I type I notice the text disappears to overset text. If I delete part of what I just typed to bring the line back, then hit return at the end of the line (the one with the rest of the alpha keyboard, not in the number pad), the text stays on this page. Obviously I shouldn't have to hit return at the end of every line to type this paragraph. I've read several similar posts on this problem and no, it's not my keyboard, I'm not on a laptop. I tried resetting my preferences but it still happens. I've looked at every possible setting I can think of and cannot find anything odd. I've compared settings to my other documents and they're all good. I'm not using paragraph styles. I've looked at leading, paragraph keep options, hidden characters (no breaks appear), and story editor. I've deleted half the text in the text box and retyped it, but it still happens. I really don't want to recreate this whole document unless that's my last option, I want to know what's wrong with it!!
    I zipped the document but I can't tell how to attach it to my post. I don't know anything about putting the document on a server so people can see it. If someone can tell me how to attach the zip file here (if it's possible) I'll do that. Or I'll email it to you. Otherwise, does anybody have a clue how to fix this? What am I missing?!!

    https://rcpt.yousendit.com/940188199/c743b96c476f76c6ca07f048e919e720
    this came in the email i sent myself.
    or would it be this one from the yousendit webpage after i sent it?
    Here's the link to your file:
    https://www.yousendit.com/download/UFVyeW41TlE5eFh2Wmc9PQ
    Sorry, i'm new to this. My information services division has a block on it so i couldn't open it myself using either link. Let me know if it doesn't work and i'll try something else tomorrow, i've got to leave for the night. (Only allowed 8 hrs a day here thank goodness!!) Oh and i've got my hyphenate box checked. I would think that no break or nonbreaking spaces show up when you view hidden characters?
    thanks again
    alice

  • Printing Overset Text

    I have been a professional user of InDesign for some time now and I mainly work with large documents and have found many timesaving scripts and workflows, but one thing InDesign just doesn't do is deal with overset text.
    Say I have 30 text frames in a document and all of them are overset. I want to print out all the spreads and print out the overset. Is there a way to do this without having to manually link all the overset text frames to another page? This is just so time consuming!
    I am working in CS3 so maybe CS4 addresses this issue. If it does please let me know. But with every new release of Indesign, I get excited hoping they have dealt with this oversight.
    It would be nice if someone created a script that linked all overset text to a new text frame in a new document and then tagged it with the first four words in the original text frame. It would save so much time. Maybe I just need to buckle down and figure out how to do this.
    Thanks for any info
    Jesse

    While I appreciate the advice, the clients I work with would rather have good ol' hard copy proofs.
    I use an InCopy workflow with one of my regular clients and I love it but convincing every client I work with to go out and purchase a $300 program just isn't that practical when I might only do one project a year with them. They want to know why I can't just put the text on another page.

  • Overset text error

    I have been working on a document... which has been passed to another designer and now come back to me. Now I can no longer edit text boxes how I would like or even move text around. For example if i have a paragraph of text and i want to move one line down by clicking enter the text below dissapears and i get an over set text error.... i click on the little red box on the bottom right of the test box ans paste this missing text elsewhere... but i dont want to do that. Can anyone help? Or udnerstand what I mean? I just want to be able to break up my paragraphs in one text box... I am stuck for ideas here of whats gone wrong. Even if I open a new document and make a text box... type in a word and click return for a new line... it gets an overset text error... so i cant type a new line of text. I have looked at rezing boxes... the font size...
    see attached image for more of an idea.
    anyone any ideas?
    thanks

    sounds like column break... check this out:
    http://indesignsecrets.com/free-guide-to-indesign-special-characters.php
    Theres also a link to pdf....

  • Why don't my WORD files show up in the LINKS panel?

    Sometimes my text files don't link when I place them. Why?

    Since you can edit and create text in InDesign, but you can’t edit or create imported art, text links are treated differently than graphic links. By default they do not show as links in the Links panel. Go to File > Preferences > File Handling and turn on Create Links When Placing Text and Spreadsheet Files. Now future placed text files will show in the Links panel. The only way to get already placed files to show is to place them again.

  • Links Panel doesn't display actual ICC Profile

    Hello. My Link Panel displays "ICC Profile: Document CMYK" on any cmyk image I place, no matter what profile the image bears, and no matter if in Colour Settings the Colour Management Policies is set to Preserve Embedded Profiles or Off. Even if within InDesign I convert it to something completely different, I still get the same information. I'm pretty sure that's not what's supposed to happen, but I'm completely blank on this. Could anyone help me out, please? Thanks a lot.

    Which file format do you use for the placed image? EPS?

Maybe you are looking for