Indesign CS 5.5 & CS 6 Text Frame Resize Crushing app

I have a document that crushes indesgn CS5 & CS 6 when trying to resize a text frame. I have tried to export the document to IDML and it crushes. I can't even export to PDF.
This is an annual report which needs to go for printing in 24hours. I have tried to get support from Adobe and currently wondering what is the next step for our group of companies affected by this huge mess.
My TS case no is 183647068.

We're just ordinary users, like you.
When things go this badly south I would try exporting each story to InDesign Tagged Text (and if that also fails, Try RTF), then place the exported stories into a new file.
When all else fails, there's markzware: Bad InDesign or Quark File Recovery Submission Form

Similar Messages

  • Its possible to change text frame contents inside group...???

    Hi Everyone,
    I'm newbibe to Indesign forums.
    I had grouped image placed on rectangle and text frame. now i need change text frame content using indesign Javascript
    Its possible to change text frame contents inside group..?
    -yajiv

    Hi Siraj,
    Thank you very much for your assistance...
    Actually I need swap both group of image and text frame to another group of image box and text frame.
    I wrote code use of you advice and i struct with errors. can you rectify this code if possible...
    Thanks in advance
    -yajiv..
    Code:
      if (app.documents.length != 0){
         if (app.selection.length != 1){
              if(app.selection[0].constructor.name == "Group"){
                   app.select(app.selection[0].allGraphics[0]);
                   var myGr1 = app.selection[0].itemLink;
                   app.select(app.selection[0].textFrames[0]);
                   var selText1 =app.selection[0].contents; 
         if(app.selection[1].constructor.name == "Group"){
              app.select(app.selection[1].allGraphics[0]);
              var myLink2 = File(app.selection[1].graphics[0].itemLink.filePath);
              app.select(app.selection[1].textFrames[0]);
              var selText2 =app.selection[0].contents; 
              myGr1.relink (myLink2);
              myGr1.update();
              myGr2.relink (myLink1);
              myGr2.update();
              app.selection[0].contents=selText2;
              app.selection[1].contents=selText1;
         else{alert("Please select the two selection....!!!");}

  • Mirror Text Frames

    For InDesign CS5. I have two text frames on different pages which will have mirror content. The text will be updated weekly. Is there a way to link these frames so that when I enter information into frame one, it populates in frame two?

    There are a few ways to fake it. I've seen discussion of exporting a selection for InCopy and placing that. Seems to be a pretty close workaround that will do what you want, although when I was playing around with it I had to refresh the target .icml frame. It may be possible to use this workaround in your case, I'm not sure.
    You might be able to use a cross reference - but then you couldn't do it by frame, as you requested. Once again, you'd have to click the "Update cross-references" button to update the target, it wouldn't happen automatically. You'd update the text in one area, and then update the cross-references to get it to propogate to the other location. This solution is kind of finicky.
    Sometimes, I have turned on "Create Links When Placing Text and Spreadsheet Files" in the File Handling section of the Preferences dialog, so I could have multiple frames all update more-or-less automatically from a source text file whenever I reopened the InDesign file. I like this solution for two reasons. First, I always get reminded to update links whenever I open an InDesign file, so I am always reminded to update the "target frame" unlike the cross-reference method. Second, all of my text content in ID is submitted to me by translators in easily linked text formats (like Word or RTF or raw text or et cetera) so I already am accustomed to managing linked text files.

  • InDesign Text frame options - how to reset?

    Working in InDesign CC 2014.
    I have somehow set my text frame options so that when I use the type tool to create a text frame, columns are added as I make the box wider.
    I know that I want Columns - Fixed number of 1, because I  have found the settings I want by opening a new doc and creating a basic text frame and looking at the settings.
    In my working doc, when I change the text frame option settings, they will not "stick" and I can only create text frames with columns, and the width increases incrementally.
    Only way I can make the basic text frames I want is to copy a basic empty frame from a new doc and paste into my working doc.
    How can I get the settings I make to "stick"?
    Thanks!

    Open the Basic Text Frame Object Style, and fix your column settings there. Your new text boxes are based on those settings.

  • Indesign CS3 text frame parameters and export PDF

    could use some help with the following:
    I need to edit and export a large number (7000) Indesign documents (one page)
    1. check for locked text frames and unlock
    2. group all text frames
    3. set grouped text frames at x=8 millimeters, y 10 milimeters
    4. export the documents to PDF in a subfolder called "Out"
    5. save and close the documents in the same subfolder as an Indesign CS3 document (orig is CS2)
    This is what I've been trying soo far:
    Now only checking one text frame - should be all text frames
    "close document 1 saving yes" doesn't work because the originals are from CS2
    I get a PDF called "Adobe Indesign SC3"
    set processFolder to choose folder with prompt "Choose a folder that contains Innd Docs to process"
    tell application "Finder"
    if not (exists folder "OUT" of processFolder) then
    make new folder at processFolder with properties {name:"OUT"}
    end if
    set the destination_folder to folder "OUT" of processFolder as alias
    end tell
    tell application "Finder"
    try
    set listFiles to (files of contents of processFolder) as alias list
    on error
    set listFiles to (files of contents of processFolder) as alias as list
    end try
    repeat with thisFile in listFiles
    tell application "Adobe InDesign CS3"
    with timeout of 120 seconds
    activate
    set properties of view preferences to {horizontal measurement units:millimeters, vertical measurement units:millimeters, ruler origin:page origin}
    open thisFile
    set myDoc to document 1
    set docName to name
    tell myDoc
    set transform reference point of layout window 1 to top left anchor
    set myBox to text frame 1 of page 1
    set properties of myBox to {locked:false}
    move myBox to {8, 10}
    end tell
    export document 1 format PDF type to (destination_folder as string) & docName & ".pdf" using PDF export preset "[Drukwerkkwaliteit]" without showing options
    close document 1 saving yes
    tell application "Finder" to move thisFile to destination_folder with replacing
    end timeout
    end tell
    end repeat
    end tell
    end
    end
    Any help is greatly appreciated - Doing this manually is a lot of work!!!!!
    Peter

    You're asking for the name of the application, not the document -- you need<br />to do it after your "tell myDoc".<br /><br />You could also get the name from the alias you open, rather than the open<br />document, something like:<br /><br />repeat with thisFile in listFiles<br />set oldDelims to AppleScript's text item delimiters<br />set AppleScript's text item delimiters to {":"}<br />set docName to text item -1 of (thisFile as Unicode text)<br />set AppleScript's text item delimiters to oldDelims<br /><br />You should also move your "set properties of view preferences" line to after<br />your "tell myDoc".<br /><br />-- <br />Shane Stanley <[email protected]>

  • Adding a graphic or photo behind a text frame in InDesign CS

    Hi Everyone,
    I'm hoping I can get some help please on a problem I'm having. I'm switching from QuarkxPress to InDesign CS -  after having it for nearly six years! - thought it was time learn InDesign. So far, I really like it. But, I've discovered a small problem I never encountered with Quark but I'm having it with InDesign. I have placed a vector graphic separately behind a Headline text frame (also tried a photograph). For some reason, the vector graphic totally covers up the Headline text. I have tried "send to back," that didn't work, it still covered the text. I made sure that there was no fill color at all. I even tried putting the graphic on a separate layer "behind" the Headline text and that still won't work. Could someone please help me. I would so appreciate it.
    Snippet

    Does your image use text wrap? Unlike Quark, by default InDesign's text wrap affects text both in front and behind the wrapped object. This is good becasue if you use transparency you want the text onthe very top to prevent unwanted outlining or rasterization at ooutput. You can change the behavior to mimic Quark in the application preferences, or you can open the text frame options for a frame you don't want to be affected and check the box to Ignore Text Wrap.
    The other posiblility is a stacking order problem. If your text is on a master page it will be behind any objects onthe same or higher layer on the document page. On any given layer, master objects are always behind live objects on the page.

  • Global change to the size of a text frame in InDesign 5.5?

    Is there a way to make a global change to the size of a text frame in InDesign 5.5? I just laid out a book and the size needs to go up half an inch.

    If you have worked properly and have done following:
    Set up Masters with margins and columns,
    Aligned all text frames with the margins,
    Turned on Layout Adjustment,
    You will only change the margins on the Master and it will change every page.
    If not …
    you have to do it manually.

  • Text frames added to items in my Indesign library?

    Hey,
    When I put design elements (even just simple text so I can, say, save a headline font I like for a specific element) into my library to re-use later, when I pull them out they have a huge text frame on the, which I then have to remove manually. This is a pain. I might as well just keep a notepad beside my computer and write down things I like and remake them every time if I'm going to have to mess with the elements I pull out of the library anyway.
    Any way I can just get it to stop doing that? I'd like the element I put into the library to be THE SAME element when I take it out. I have a feeling there's just some setting somewhere I can't find that's causing this.
    I'm using CS6, by the way.

    Salah Fadlabi wrote:
    Try to open Object style with no document open, double click on none then close and open indesign. Every frame after this process will be without border.
    This is only correct for new created document, not for existing ones. If the problem existis in an existing document you have to change the default style with no object selected.
    I would strongly recommend to create its own basic styles for each category and load them into the several style panels to have always styles with the same name in every document which makes exchange of items easier.
    Default Object styles are those with the small rectangle graphic at the right. The one with the T ist for Text frames, the one without T for Image Frames.

  • How to enable the script label of a text frames in indesign using applescript

    hi all,
    am using Indesign CS2 with applescript..
    Using script I have to open a template in indesign and flow the word document into it...
    I can able to flow the word document into the template using "Place" command..but script labels of the text frames gets disabled...
    I need the script labels to be enabled...
    can anybody help me
    thanks in advance

    Script labels can't be disabled, so I'm not sure what your problem is -- perhaps seeing some code could help. Could it be that you're referencing a page item by label, but it is not responding because the item is part of a group?
    Shane Stanley <[email protected]>
    AppleScript Pro Sessions <http://scriptingmatters.com/aspro>

  • Why are InDesign text frames uneditable, or converted to outlined objects, when opened in CS4?

    When opening a CS3 Layout in CS4 to make client text changes, all the text frame box edges (on their appropriate layers) are shown as dotted lines, and none of the type is editable!
    I restored the old version, and opened in CS3 old version, and the same thing applies! Arggggh - there must be a frame preference that I don't know about or an instruction accidentally given.
    How do I convert the text boxes back to editable regions? Got a deadline and am miffed.
    I am a 20 year veteran of Pagemaker/Indesign/CS and this has never happened to me before!

    Dotted lines for frame edges means that the item is on the Master Page. That’s why you can’t edit items, because they are on the Master, not on the numbered page. Either Command-Shift-click on the object to edit it or edit it on the Master Page. You should find out why so much of the document was built on the Master Page. Either the designer meant this to be a template for multiple existing or future pages, or someone just wasn’t paying attention and didn’t realize they were designing on the Master.

  • Bullet problem when creating text frames and tables in InDesign CS5

    Every time I create a new text frame or table in InDesign CS5 and paste information there, the first row in the table or several lines of text come out with bullet points. I'm sure this is a setting or style at some point I created and now am unsure of how to delete. I would like the new text frames and tables to not include bullet points as a default when imported or pasted. Any thoughts? Thanks!

    Defaults for text in the current document are made with no text selected. Turn off bullets and they should stay off (but check the styles, too, you might have accidentally set a bulleted style as the defualt and you should change the default style instead). If this is happening in all files, you need to do it with nothing open to reset the default for all new documents (existing files, unfortunately, need to be fixed one at a time).

  • Creating Scrollable text frames in InDesign

    I've been trying to create scrollable text frames in InDesign CS6 and, for the life of me, cannot figure out how to do so for an interactive PDF. 
    I've done so for touchscreen devices before through DPS and the scrollable frame option, but I've never tried to do it for something non-touchscreen/mobile.  I don't even know if it's possible, but I am sending this to someone who may not have touchscreen access with touchscreen scroll functionality and I wouldn't want to risk a good portion of text to go unread because of a lack-of functionality.
    So, I guess my question is:  Is there a way to create a scrollable text field for an interactive PDF that could be scrolled through using a mouse or keyboard? 
    Thanks in advance!

    No. It's DPS only.

  • How to make separate/individual text frame from one parent frame in indesign with javascript

    Hi all,
    Please suugest - how to make separate/individual text frame from one parent frame in indesign with javascript.
    Thanks
    Rohit

    @Larry – ah, your interpretation could be the right one…
    May I rephrase the question:
    "How to split threaded text frames to single ones?"
    "SplitStory.jsx" or "BreakFrame.jsx" under Scripts/Samples indeed could be the answer.
    From the comments in the code of "BreakFrame.jsx":
    //Removes the selected text frame (or text frames) from the
    //story containing the text frame and removes the text contained
    //by the text frame from the story.
    //If you want to split *all* of the text fames in the story, use the
    //SplitStory.jsx script.
    Uwe

  • Indesign CS3 what script for Break Out Text Frame ??

    hi expert,
    Indesign CS3 can Break Out Text Frame or Have Script ??
    like this...
    http://img402.imageshack.us/img402/905/20080517085017hb3.jpg
    thank for tell

    you mean - convert/split multicolumn TextFrame to separated TextFrames ?
    for PC or MAC ?
    robin
    www.adobescripts.com

  • InDesign (CS5) beachballs when clicking into a text frame

    Hi,
    I'm working on a document that causes a weird problem: when I click into a text frame, sometimes this causes InDesign to beachball for a few seconds. Activity monitor shows that InDesign takes 100% CPU time - no other activity involved. After a few seconds, everything works smoothly again.
    This does not happen every single time I click into a text frame. It happens especially after inserting sth from a library, or from another document (say, 7 out of 10 times). But it may also happen when copying (Cmd-C, Cmd-V or Alt-drag) a simple text frame within the same page.
    I gets more weird: This only seems to happen in two of my documents (and copys thereof). There isn't anything special about these documents. They contain a lot of tables and anchored objects, but that's true for a lot of other documents, too. I tried copying a table from document A (no problems) to document B (the one with problems). Clicking into this table causes a beachball. Coping the very same table within document A is fine. Even copying the table back from document B does not cause any problems. It seems like the effect is document-exclusive. I just don't know what makes it so darn exlusive .
    This problem occurs on different machines (all Macs, all 10.6, all CS5). The faster the machine, the shorter the beachball time. But even on an 8-core-iMac it easily takes up to 2 secs. Which is annoying, to say the least.
    Any ideas?

    Hmm, what version of 10.6 is this? I thought, as of 10.6.8, Sample Process always included the Binary Images section at the end. Unfortunately, because basically every one of the 250-odd plugins in InDesign has a GetPlugin()  symbol, it's tough to know exactly what is going on there...
    So, all 2126 samples recorded the same bottom 49 stack frames:
    2126 start
    2126 main
    2126 GetPlugIn
    2126 0x1cd60fef
    2126 SendEventToEventTarget
    2126 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*)
    2126 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*)
    2126 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)
    2126 SendEventToEventTarget
    2126 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*)
    2126 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*)
    2126 GetPlugIn
    2126 GetPlugIn
    2126 GetPlugIn
    2126 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState)
    2126 CEventDispatcher::DispatchToEventHandlers(IEvent*)
    2126 CDefaultEH::ButtonDblClk(IEvent*)
    2126 CWindowEH::ButtonDblClk(IEvent*)
    2126 PanelEventHandler::ButtonDblClk(IEvent*)
    2126 PanelEventHandler::ButtonDblClk(IEvent*)
    2126 PanelEventHandler::ButtonDblClk(IEvent*)
    2126 PanelEventHandler::ButtonDblClk(IEvent*)
    2126 0x1f6bb8b8
    2126 GetPlugIn
    2126 0x1cfbf039
    2126 CSubject::Change(IDType<ClassID_tag>, IDType<PMIID_tag> const&, void*)
    2126 GetPlugIn
    2126 GetPlugIn
    2126 0x1afdcfdb
    2126 0x1afdc658
    2126 0x1afdb09c
    2126 0x1cfa0675
    2126 PanelView::Show(short)
    2126 PanelView::ParentsVisibleStateChanged(short)
    2126 CControlView::DoAutoAttach()
    2126 GetPlugIn
    2126 PanelView::Show(short)
    2126 CControlView::Show(short)
    2126 CComboBoxView::DoAutoAttach()
    2126 CControlView::DoAutoAttach()
    2126 CFontFamilyObserver::AutoAttach()
    2126 CFontFamilyObserver::Init(short)
    2126 0x1e757c45
    2126 GetPlugIn
    2126 GetPlugIn
    2126 GetPlugIn
    2126 GetPlugIn
    2126 GetPlugIn
    2126 StoryEndCharHelper::FixEndCharacterSingleStory(UIDRef const&)
    (Sorry, that's kind of long. Maybe I should have formatted it differently?)
    But clearly it has something to do with Fonts (CFontFamilyObserver), and something to do with one particular story (FixEndCharacterSingleStory()).
    Then when we look actually closer to the top of the stack:
        2121 StoryEndCharHelper::FixEndCharacterSingleThread(ITextModel*, long, long)
          2121 StoryEndCharHelper::GetFontAttributes(ITextModel*, long, boost::shared_ptr<AttributeBossList>*)
            2119 GetPlugIn
              1154 AttributeScanner::AttributeScanner(IComposeScanner const*, long, long, IDType<ClassID_tag> const*, IDType<ClassID_tag> const*, AttributeScanner::AttributeClassification)
                1151 AttributeScanner::ReadAttributeChunk(short)
                  1143 AttributeScanner::ReadAttributesFromVOS(VOS_SimpleCursor*, short, short)
                    1120 AttributeScanner::ReadAttributesFromRunIn(AttributeBossList const*, long*, short)
                      1117 GetPlugIn
                        1116 GetPlugIn
                          1102 GetPlugIn
                            1011 GetPlugIn
                              963 GetPlugIn
                                889 GetPlugIn
                                  768 GetPlugIn
                                    658 boost::basic_regex<int, boost::icu_regex_traits>::do_assign(int const*, int const*, unsigned int)
                                      596 boost::re_detail::get_icu_regex_traits_implementation(icu_3_6::Locale const&)
                                        587 icu_3_6::Collator::createInstance(icu_3_6::Locale const&, UErrorCode&)
                                          586 icu_3_6::Collator::makeInstance(icu_3_6::Locale const&, UErrorCode&)
                                            581 icu_3_6::RuleBasedCollator::RuleBasedCollator(icu_3_6::Locale const&, UErrorCode&)
                                              578 icu_3_6::RuleBasedCollator::setUCollator(char const*, UErrorCode&)
                                                578 ucol_open_internal_3_6
              958 AttributeScanner::GetSameRunLength()
                958 AttributeScanner::ReadAttributeChunk(short)
                  958 AttributeScanner::ReadAttributesFromVOS(VOS_SimpleCursor*, short, short)
                    944 AttributeScanner::ReadAttributesFromRunIn(AttributeBossList const*, long*, short)
                      942 GetPlugIn
                        941 GetPlugIn
                          933 GetPlugIn
                            865 GetPlugIn
                              812 GetPlugIn
                                744 GetPlugIn
                                  647 GetPlugIn
                                    538 boost::basic_regex<int, boost::icu_regex_traits>::do_assign(int const*, int const*, unsigned int) 
    Well, I made some attempt to filter out the weeds. A substantial amount of time is spent in the regular expression library. Do you have GREP styles? They may be part of the problem.
    If we can resolve this without needing to know which GetPlugIn() are which, that would be helpful. Otherwise you'll need to [maybe?] upgrade to 10.6.8; force a crash (View > Send Signal > Abort (SIGABRT)) in Activity Monitor, which may not be easy to do usefully, since if the crash happens during one of the unremarkable parts of the beachball, it won't tell us anything; break out fancier less user-friendly tools like Instruments.app or gdb.
    I don't suppose you're familiar with any of those tools?
    So, I would try removing all your non-system fonts and seeing if that changes the behavior. Or tightening up GREP styles...
    Or pulling out the heavy guns.

Maybe you are looking for