How to Embed a Text Frame Within a Text Frame with Smart Text Reflow

This is driving me nuts, and I've wasted hours searching exhaustively but can't seem to find the answer.
I've been working with this indesign file and cleaning it up really well.  I now have all the text flowing with smart text reflow.  There are two parts in the book that have columns of information, or tables.  The way it was originally done was having a text box placed inside the text box.  But unfortunately, whenever you add pages before or after, the text box won't follow with the text box it is inside.  I have tried grouping the two text boxes together, but this doesn't seem to work with Smart Text Reflow (since every page is based on the primary master). How do you embed a text frame inside another text frame that is based off the primary master?  I guess it would be like using the text frame as an object. 
I included an image to help my explanation.
I even tried adding columns and then spannign the header part across, but this still doesn't flow with the rest of the text.

ANchor it into the other text fram, look in the help file. Keyword = Anchored Objects.

Similar Messages

  • I often have to open files .cue with Text Edit. Right Click, Open with, Others, Text Edit. Is it possible to put Text Edit in the menu avoiding to use "others"?

    I often have to open files .cue with Text Edit. Right Click, Open with, Others, Text Edit. Is it possible to put Text Edit in the menu avoiding to use "others"?

    The easiest way is to keep Textedit in the Dock and drag the .cue file(s) to the Dock icon.
    You can also create an Automator Service:
    Open Automator
    Select: Service
    Select Service receives selected [files or folders] in [Finder]
    and:
    Then select one or more .cue file, right click (or Control-click) on the selection to display the contextual menu. Scroll to the bottom of the contextual menu and select Services -> (what you named the Service).

  • Adding pages and Text Frames to emulate the behaviour of "Smart Text Reflow"

    I am creating a large number of tables in a document.  If I have Smart Text reflow turned on, my script does not work properly.  I have the start of the processing:
    1. Add a new table
    2. If the last page text frame overflows then Add a new page
    With smartTextReflow turned off, I want to ensure that new text frames that match the primary text frames from the master page.  It has to be able to handle getting the parameters from the left/right page text frame.

    I have been able to solve my problem.  I was really overthinking things!!!
    Since I have designated the text frames on the master pages as primary text frames, when creating a new page, a text frame is created automatically. So the problem is then just link the previous text frame to the text frame that was created when adding the page.
    TableAutomation.prototype.AddPage = function() {
         var previousTextFrame = app.activeDocument.pages[-2].textFrames[0];
         var np = app.activeDocument.pages.add();
         var textFrame = np.textFrames[0];
         previousTextFrame.nextTextFrame = textFrame;
    The cost of the above code was about 5 hours of banging my head against the wall

  • I can send text messages within Australia but can not sent text messages internationally. Has anyone experienced similar problems?

    I can send text messages within Australia without difficulty but many of my international texts are not delivered. Has anyone had similiar problems.

    SMS text messages are handled by your cellular carrier.
    Check with them.

  • How do I adjust text size in toolbar, in tandem with browser text zoom, WITHOUT limiting the screen space of my browser window as a whole? Changing Windows DPI reduces browsability of window as displayed.

    I tried to customize PC settings for my mom, whose site is failing. So I plugged in the nosquint Firefox addon and upped the font size. Additionally, I tried to make desktop text etc. (non-browser text) larger. When I accomplished this through the Windows DPI adjustment, the browser would not open to full screen width (at least, not through any means other than F11, which is something beyond my mother's understanding or patience). With DPI 120, the maximized browser will not go full screen, but will instead hold left of screen, and display less than the full width of the page being viewed (this make my mom give up. And who wants to scroll laterally anyways?). Is there some way to pair the functionality of Windows DPI boosts with Firefox text/window zoom? Thanks.
    == This happened ==
    Every time Firefox opened
    == I changed Windows DPI to >196

    See [[Toolbars and page content appear too large after upgrading to Firefox 3]]
    Try to adjust the DPI setting, see [http://kb.mozillazine.org/layout.css.dpi layout.css.dpi]
    Try to set the pref layout.css.devPixelsPerPx to 2 on the about:config page.
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • CS5 hangs with smart text reflow during scripting

    Hello,
    I have a batch script that opens each input file in a folder one after another and saves them as indd and pdf.
    Now I have run across a problem.
    The script opens the input document (a special xml format for our plugin, this opens one InDesign template and places some content into a specific text frame), then run preflight to check if there are overflows etc. and then saves the content to indd and pdf.
    The input template has smart text reflow enabled, with adding new pages at the end of the document and deleting empty pages because I do not know how much content will be placed.
    I have some strange issues:
    In ID CS4, the script runs fine, but some times I got preflight errors for some documents (different ones on each run). If I open the documents afterwards, it seems the smart text reflow did not run before the script saved the indd (and so preflight found an text overflow).
    However in CS5, InDesign hangs at some time during the script - windows task manager says it is not responding. This happens at a random file (not the same each time), the first ones before came out as expected.
    Because of the preflight issues in CS4 I have made a test and created a new template with disabled smart text reflow and already added the maximum number of pages for my content. Now the script runs fine in CS5 (without hanging). But this way I have emtpy pages I do not want.
    My assumption is, that the smart text reflow does run some sort of asyncronous and gets in the way of saving/exporting to pdf the file. A "$.sleep(5000);" after opening/placing does not help either.
    Is there any way in scripting to force the smart text reflow or to wait for it until it is finished?
    Below is the relevant part of the script.
    Has anybody a solution or workaround?
    Best regards,
    Ingo
    // process documents
    for(var i = 0; i < alldocs.length; i++ ){
      try{
        // Opens document
        // this is a format that triggers our plugin which opens a specific indt-template and places the content
        var currentDocument = app.open( alldocs[i],true);
        // try to force document to be really ready - TODO: is there a better/working way? Some way to wait for smart text reflow?
        currentDocument.recompose();
        //$.sleep(5000); //Fallback - sleep for a reasonable time to let the document be opened - does not help either
        // process the document with the selected profile
        var process = app.preflightProcesses.add(currentDocument, Settings.preflightProfile);
        process.waitForProcess();
        // get the results
        var preflightResults = process.aggregatedResults;
        // each report is in the [2]-Array. First condition prevents NullPointer-Errors
        if((preflightResults.length > 0) && (preflightResults[2].length>0)){
          logLine(alldocs[i].name + ': Preflight problems');
        // save as InDesign
        var indesignFile = new File(Settings.outputDir.fullName+'/'+alldocs[i].name.replace(RegExp( '\.[^\.]{1,4}$' ), '.indd' ));
        currentDocument.save( indesignFile );
        // Export as PDF
        var pdfFile = new File(Settings.outputDir.fullName+ '/'+alldocs[i].name.replace(RegExp( '\.[^\.]{1,4}$' ), '.pdf' ));
        currentDocument.exportFile(ExportFormat.pdfType, pdfFile , false);
        currentDocument.close();
      catch(err){
        // if there was a problem, note filename to display later
        logLine( alldocs[i].name + ': Errormessage was "' + err.description + '"');

    Well.. it works. It's a ugly cludge, but at least it works. I'm posting a snippet of code, because i'we seen a lot of threads on the same subject, and maby someone else will find it usefull.
    // save old recompose and set new one
          var myOldSmartText = app.activeDocument.textPreferences.smartTextReflow;
          app.activeDocument.textPreferences.smartTextReflow = true;
          app.activeDocument.textPreferences.addPages = AddPageOptions.END_OF_STORY;
          app.activeDocument.textPreferences.deleteEmptyPages = true;
          //find docType headers and apply keep
          app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
          app.findTextPreferences.findWhat = "<docType:TaggedRTF>";
          app.changeTextPreferences.startParagraph = StartParagraph.NEXT_ODD_PAGE;
          myStory.changeText();
          //fix tables
          if (myStory.tables.length) {
    /* long code to process tables, not interesting
         //process style rules
    /* long code to preformat text, add/remove space after headings, lists, blocks etc.
          // save old preflight options, add new ones
          var oldPreflight = app.activeDocument.preflightOptions.properties;
          app.activeDocument.preflightOptions.preflightOff = false;
         // wait a maximum of 40 second for the preflight process. Before it runs, the (not so)Smart  Text Reflow should kick into action.
          app.activeDocument.activeProcess.waitForProcess(40);
          //stop preflight for a bit more performance?
          app.activeDocument.preflightOptions.preflightOff = true;
          //now check if story overflows? (maby you have a very large cell in a table? some wierd keep options? bad things happen
    Can i mark my own answer as correct?

  • How to embed an external player in a java frame?

    Hello
    I want to use virtual dub player ( which has the capability of playing the video frame by frame and also normally) for some analysis of videos. But I want to embed the player in a java frame and draw some lines on the video. How can i embed the virtual dub player in a java frame?
    laks

    Look at:
    Slight oversight in the Concepts guide regarding external tables
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref777

  • How do i?? Trying to make a slideshow with animat text to play on 16:9 HDTV

    ok. In a rush here.
    How do i setup my sequence so i can import photos and add animated text to create a 4 minute animated slideshow. The end result will be burned onto DVD and played on a 16:9 HD Plasma or LCDTV.
    What is the settings for the sequence?
    How do i export?
    What program should i use to burn to DVD?
    Do i need to go get a special DVD player to play this DVD?
    If done correctly will i get a clear image that will fit on a 16:9TV and look near HD quality?
    Thanks in advance to everyone!
    Sincerely,
    John Taylor Cook
    MAC PRO   Mac OS X (10.4.9)  

    The DVD player you want to use will not deal with HD DVD's... so you need to make an SD project in the end.
    Set your sequence settings to DVCPROHD 1080i 60... Edit in that sequence. The jitter in your stills could be caused by a number of things, but normally if you will downsize the pictures to a size not much bigger than your sequence settings' size they may well look a lot better. In the case of the DVCPROHD settings above, you'd make them no larger than 1500 pixels in either direction, and no larger than 300 dpi... they must also be RGB stills not CMYK... You need Photoshop or similar to change them and resize them with... make sure their format is RGB and not much larger than what I've suggested for size. Tiffs or Picts work better than JPEGs too. JPEG's take a lot longer to render...
    If these stills are smaller than that to begin with... might be best to use the standard DV NTSC anamorphic sequence setting, and the following workflow would work for either case. It's just that the HD settings would keep things in a higher resolution to start with, and the better you start with, the better the end product will be. Using uncompressed HD settings would be even better, but it takes a pretty serious mac setup to deal with these huge files. Fast array for playback and Capture card for monitoring externally with...
    When you get finished, simply choose File/Export/Using Compressor. It's recommended by many to NOT use any rendered media... i.e. trash your renders before you export the sequence to Compressor. This is done from the Tools menu (Render manager) just check on the sequence you're exporting there and trash the renders for it en masse.
    In compressor choose a 16:9 SD preset that is the shortest you can use... i.e. if your sequence is shorter than 90 minutes, use the high quality dual pass VBR preset for 90 minutes... Then import the resulting SD MPEG files into DVD SP and create your Standard Def DVD with them.
    Jerry

  • How do I insert additional pages inside a footnoted document with accompanying text boxes and still keep pages below syncronized?

    Is there a way to insert additional pages into a lengthy document containing continuous footnotes at the bottom of each page and accompanying text boxes on most pages without losing the syncronization of text and text box information on the pages below?

    Footnotes do not work for text in textboxes, and you can keep on adding text after existing text so I am not sure what you are asking for.
    Peter

  • HT2506 How can I insert a link within a PDF document with preview.app in Mavericks

    Would like to create a selfmade table of contents that links to the right place in the pdf document
    Thanks for the support!

    Preview is not really a PDF editor. You can do basic stuff such as add annotations, insert pages, but you cannot add hyperlinks.

  • Does anyone know how to write an apple logo or the command symbol with the text tool?

    It is done by alt + shift + K with mail etc. on a mac but not in photoshop.  PS 3  macbook pro
    Thanks Chris

    while it does make an apple logo as the layer name it makes a square on the canvas.
    Then I suspect the problem is with the font.
    Have you tried using another one (preferably one of the default ones)?

  • Texting to and from Puerto Rico with unlimited texting plan?

    Hi there,
    I have an unlimited texting plan and I was wondering if that also covers Puerto Rico, besides the U.S.  If so then what are the rates for sending and receiving texts from Puerto Rico.
    thank you,
    keramaphoo

    Yes It does. It would be the same as your texting plan.

  • Can't forward texts as dialogue box pre-populated with old text

    Hi - I've seen a few old posts about this but no one has had an answer.
    When I either try to forward a message on my iPhone (iOS 6.1.2), instead of the message I have selected to forward appearing in the window, an old message appears. This also happens when I select new message.
    This means I am completely unable to forward messages on my phone. It's a big problem.
    Does anyone have a solution?
    Thanks

    At least also set the content length. Your browser may be configured be the default application to open textfiles. If the contentlength is not set, then most applications would refuse to open the file without choosing for 'Save' first and manually open it.

  • How to embed the pdf in custom transaction itself

    Hi Masters,
               By my custom program i am showing the form in pdf format . I am saving this pdf in local drive and i am opening that pdf in seperate screen.
                My question is how to embed the pdf file within the transaction rather than downloading to client system and opening it there??. Its very urgent.
                Thanks in advance.
    Best Regards,
    Purna

    Hi,
    Use CL_GUI_FRONTEND_SERVICES=>EXECUTE
    or CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
    in your program.
    Best regards,
    Prashant

  • After Effects CS6: Adjacent text layers overlap by one frame, can't fix it

    Adjacent text layers, which we are using to subtitle bits of video, butt up against each other and in some instances it's fine (the text changes at the correct frame), but in others the text from the first one bleeds by one frame into the second and overlaps. If I shorten the time on the first one by one frame, there is a gap with no text. How can I fix this? The comp is built from the video so the frame rate of the comp is the same for the video file.
    Thanks for any help!
    Glen

    Thanks very much Mylenium for your help - I've scoured the file looking for everything you mention, and there anything fancy at all. I'm using no time-stretching or remapping, simply putting a text layer on top of a video, and moving its in and out points. No blurs or odd keyframes as far as I can tell. Video and comp are both 29.97 framerate (comp created using "New comp from selection").
    Glen

Maybe you are looking for

  • Is there any way i could burn a DRM-protected movie from iTunes?

    Every time i burn something i get an error in iTunes (error 4280), so i try to burn it with a more reliable software but then another iTunes-related error pops-up (This video is iTunes-DRM protected). Is there anyway i could possibly burn something f

  • Include Flat file name as a field in the PSA / DSO.

    Hi, I have a requirement to include the Flat file name also in the DSO which is used for loading the data from a flat file source. I have created a new infoobject for File Name in the DSO. Can you guide me from which table I can get this information.

  • Compatibility between oracle 9i and WebLogic AS 6.1

    Can the WebLogic Server 6.1 supports the Oracle 9i database in Solaris 8?

  • Best way to handle audio and video?

    Can someone give me suggestions on best way to handle audio and video clips. 2 issues: Audio- I want to avoid problems for visitors who may need to install something to listen, and would like them to be able to remain viewing page while listening. I

  • Safari is not happy and iphoto not working now

    I have a mac mini OSX 10.9.2  2.3 ghz intel core iS   8GB memory          I intstalled maverick a couple months back, and life has never been the same since. things were just slower, at first, and I can live with that. But it latest weeks Safari has