CS4 messing up span column layouts from idml

Hi,
I've tried searching for this, and although I'm sure there must be topics discussing the issue, I can't seem to find any. Please point me in the direction if this has featured already.
I've got a large 400page document created in CS6 that uses the span columns feature throughout. After the document was signed off the client requested a copy. They're having issues opening it in CS4 where tables that span columns are messing up the layout. I wondered if it was an issue going from CS6 to 4, so I opened in CS5.5 and created imdl files from there but they are still having the same issues.
Is this fixable? Hopefully without installing scripts etc as my client is not an experienced Indesign user and I'm unable to work from his machine.

MrJono wrote:
I guess it's not surprising that adobe haven't created a solution to this problem when the easiest way to solve it is buy upgrading.
That's an awful assumption in which to make where you have no authority on the subject.
http://in-tools.com/article/whats-with-back-save-to-earlier-versions-of-indesign/
Although I do agree with you to a certain stance.
What should Adobe do with a 2 column layout that has a heading set to Span?
Should it remove the Span from the heading - then anchor a text frame across the two columns, make a wraparound for the text frame, anchor it neatly, add back in the text to the style and account for overset text?
Or should it make it all the text in the 2 column layout into a 1 column layout, then convert the text in the body to a 2 columned anchored frame that sits underneath the heading? How will it adjust for anchored text frames that flow across pages (because InDesign can't really do an anchored text frame that flows between pages unless you've premade the text frames, flowed the text, adjusted the sizes, grouped them then added them as an anchored frame within a text frame then move them around the text frame until satisified with the position.
Then what will it do with the dozen other updates that you may or may not have used like "Keep With Previous" - how should InDesign handle that in CS4? What about Line Styles and Grep Styles? How should it handle that?
No - the solution has always been that you and your client work on the same *version of InDesign* on the files at all times.
*edit*
If they just want a Word File then you can use a very simple script export your version to Word.
http://www.kahrel.plus.com/indesign/batch_convert.html
This will convert any indesign files in a folder to whatever file format you want, inlcluding RTF which can be opened in Word.

Similar Messages

  • Spanning Columns, Messes TOC Order

    Hello
    I have earlier posted a thread with my problem. See: Re: TOC Problem, Wrong Order, Connected/Unconnected Text Frame
    Now when the problem is tracked down (spanning of columns) I choose to create a new thread hoping that someone has encountered the same problem and has a possible solution. (Using CS 6)
    The problem:
    I have chapters (H1) with sub-chapters (H2). The text is flowing freely between the chapter text-frames, until a new chapter (H1) starts. The chapter title (H1) spans over all columns, defined in its paragraph style.
    When creating a TOC I have found that if a sub-chapter (H2) is above a new chapter (H1) the spanning column function messes up the TOC order. See chapter 1:4 in my example.
    The problem may be bypassed by doing one of the following things:
    Disable the column span of H1. E.i the chapter heading in a single column messes up the original layout.
    Connect all text frames. E.i, flow text thru all text-frames, may become a problem when rearing the chapter order.
    Remove the text-frame connection of the text-frames….
    None of these solutions are sufficient. I have never during my 13 years with Indesign encountered such showstopper/bug.

    Thanks for your replay.
    The numbers is written text to make it easier to comprehend the example. These are not auto-generated.
    In the other thread I had got some response:
    "When the textframe flows from an even page number to an uneven page number the problem (like from page 2 to page 3) the TOC is incorrect.
    But when the textframe flows from an uneven page number to an even page number (like from page 3 to page 4) the TOC is correct."
    Which does not make any sense at all.

  • Spanning columns in a grid messes up column widths

    Hi. I've been struggling with some layout issues when using
    column width percentages with the Flex Grid control. It seems that
    if I add a column that spans 2 or more columns, the column widths
    of the entire grid are altered. The strange thing is that the
    column widths are changed only if the text in the colspan column
    exceeds the width of the text in cells above or below it. Please
    see the code sample at the bottom of this message for a
    demonstration (I can't seem to find a way to "attach code").
    Does anyone have any ideas how to fix this?
    Thanks!
    Dustin
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" layout="vertical">
    <mx:Script>
    <![CDATA[
    import mx.containers.*;
    import mx.controls.*;
    import mx.core.*;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    private var dynamicText:Text;
    private var charCode:uint;
    private var button:Button;
    private function init():void
    var panel:Panel = createPanel();
    addChild(panel);
    addText(panel);
    addGrid(panel);
    addButton(panel);
    startTimer();
    private function timerComplete(event:TimerEvent):void
    button.enabled = true;
    private function createPanel():Panel
    var panel:Panel = new Panel();
    panel.title = "ColSpan Spacing Problem";
    panel.width = 500;
    panel.height = 200;
    panel.horizontalScrollPolicy = ScrollPolicy.OFF;
    panel.layout = "vertical";
    return panel;
    private function addText(panel:Panel):void
    var text:Text = new Text();
    text.text = "First row contains 5 columns with no col spans.
    Second row contains 4 columns with " +
    "column 2 spanning columns 2 and 3. Notice how the column
    widths are affected when the text " +
    "in the colspan cell grows larger than the text in the cell
    above it.";
    text.percentWidth = 100;
    panel.addChild(text);
    private function addGrid(panel:Panel):void
    var grid:Grid = new Grid();
    grid.setStyle("horizontalGap", "0");
    grid.setStyle("verticalGap", "0");
    grid.percentWidth = 100;
    panel.addChild(grid);
    // FIRST ROW
    var gridRow:GridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    var gridItem:GridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 48;
    var text:Text = new Text();
    text.text = "No ColSpan Columns";
    gridItem.addChild(text);
    gridItem.colSpan = 1;
    gridItem.clipContent = false;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 13;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 37;
    gridRow.addChild(gridItem);
    // SECOND ROW
    gridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.text = "A"; //IF THIS TEXT GROWS WIDER THAN TEXT
    IN THE ROW ABOVE, SPACING IS THROWN OFF
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    private function addButton(panel:Panel):void
    button = new Button();
    button.label = "Start Over";
    button.addEventListener(MouseEvent.CLICK, startOver);
    panel.addChild(button);
    private function startOver(event:MouseEvent):void
    startTimer();
    private function startTimer():void
    dynamicText.text = "A";
    charCode = 66;
    button.enabled = false;
    var myTimer:Timer = new Timer(250, 25);
    myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE,
    timerComplete);
    myTimer.start();
    private function timerHandler(event:TimerEvent):void
    dynamicText.text += String.fromCharCode(charCode);
    charCode++;
    ]]>
    </mx:Script>
    </mx:Application>

    This seems to fix it.
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.percentWidth = 100;
    dynamicText.text = "A";
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);

  • InDesign CS4: Two column layout question

    I'm looking for the best way to handle a two-column layout where:
    • Column 1 contains tips, small images/thumbnails/icons, etc
    • Column 2 contains the meat of the educational material, and
    • Content in column 1 anchors/floats with the appropriate content in column 2.
    The goal here is if the content in col 2 moves, the related content in column 1 moves with it.
    I've got about 1200 pages of content coming in from somewhat rough TXT.

    Pants_Sans wrote:
    I'm looking for the best way to handle a two-column layout where:
    • Column 1 contains tips, small images/thumbnails/icons, etc
    • Column 2 contains the meat of the educational material, and
    • Content in column 1 anchors/floats with the appropriate content in column 2.
    The goal here is if the content in col 2 moves, the related content in column 1 moves with it.
    I've got about 1200 pages of content coming in from somewhat rough TXT.
    Scroll down to the hanging side heads topic in this linked page http://www.peachpit.com/articles/article.aspx?p=1324259, for information on how to do this with the normal user interface.
    Perhaps a scripter on the forum can offer an automated approach.
    For the hard-core developer-mindset folks on the forum, here's an article on how to use the SDK (software development kit) to create a panel for hanging side headings http://blogs.adobe.com/cssdk/2010/08/makesideheads-a-complete-indesign-cs5-panel-2.html
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Expanding text fields side-by-side in a 2 column layout

    Hi,
    I've been trying to create a form that is a 2-column layout. This form contains expanding text fields that are side-by-side with additional form elements underneath. I managed to get the expandable fields to work, however, if the user writes too much in the text field in the left-hand column and it wraps onto a second page, the text field in the right-hand gets pushed to the second page. I am wondering if someone has experience with this and could help me figure out how to make sure the text field in the right-hand column stays in place as the text field in the left-hand column expands onto 2 pages.
    I've tried to wrap each text-field in their own subform that stays fixed, but that seemed to cause the field to expand over the elements below it.
    Take care,
    Carolyn

    Luke23ae wrote:
    for my bachelor-thesis I'm trying to create a 2 column layout in pages. The left column should contain all contents, the right column should only contain notes and additional information supporting the 'main' column. So the right column only contains a little text every now and then. Using the Layout Inspector and setting up 2 columns fills the right column automatically withe the contents overflowing the left column. What I'm hoping to archive is to create a 2 column layout leaving the right column blank, allowing me to insert Text-fields (unless there's a better way) wherever I need to add an annotation.
    Hi Lukas,
    Welcome to Apple Discussions and the Pages '09 forum.
    Since you want the text to flow from page to page in the left column, it would appear best to use a single column for the main text, and to limit the width of that column using the right margin stop.
    That leaves the right half of the page open for a series of text boxes (or shapes, as shown) to contain the notes and additional information.
    I would start with a single text box or shape, resize it to the width you want, then duplicate that one each time you need a new box. That way all your text blocks have a common width to begin with, and if you take care to use only the handle at the center of the bottom edge to resize them, you will not disturb that width setting.
    As noted earlier, the floating objects will not automatically travel with the text they apply to if editing causes that text to move.
    Regards,
    Barry

  • How can I set up a 2 column layout in LiveCycle?

    Hi,
    I'm new to working with LiveCycle Designer. I'm using version 10.4, the OEM version bundled with SAP. Aside from being quite buggy, the capabilities seem pretty similar to LiveCycle Designer ES4, which I downloaded in a trial version. All of which is to say that this is a newbie question.
    I cannot, for the life of me, figure out how to set up a 2-column layout.
    On my master page, I have two content areas.
    When I create a new page, I am able to drag fields into the first content area I created, but not into the second content area.
    What am I doing wrong?
    Thanks,
    Janet

    Hi. 
    I am not a new LiveCycle Forms designer.  I am using Workbench ES2 (9.0.0.2.20121123.884160).  I have run into a new design problem related to a two column page. The business analytsts have designed the form in Word, where columns work great.  I have tried two subforms within the page. The problem with that is when the right column subform overflows, it overflows to the left column (as the left column has not overflowed), or when the left column overflows (whether or not the right column overflows) the right column begins on the left column's overflowed page.
    I have tried building a page with two side-by-side content areas in the Master Pages, including setting overflow parameters for each subform in the Design View, also with similar problems.
    I have tried using a table with no header and 1 row.  That one is interesting.  When only one cell overflows to another page, it works correctly.  When both columns overflow, the first text box in the subform in each cell is displayed at the top of the page and the remaining content of both cells overflow to the next page, leaving a nearly blank page containing only the one-line text label in each of the two columns.
    Is there some nearly hidden setting I am missing?  Is this possible within LiveCycle Designer Forms?
    Thanks for your attention to this request.
    Frank

  • Files from IDML or CS5, 5.5 become very slow in InDesign CS6

    Windows 7 64 bit, core 2 duo, 8 gb ram, plenty of open space on the hard drive.
    Files work just fine in CS5 and CS5.5. Opening one of them in CS6 and working in them when just opened is also fine. After saving the file as a CS6 document, closing, and reopening in CS6, selecting text becomes extremely slow...merely putting the cursor in a text frame results in significant delay--the toolbar goes blank and takes several seconds before it redraws. Proceeding to select text and typing changes causes similar behavior.
    Opening an IDML file causes similar behavior after the file is saved as CS6 and closed.
    Files created in CS6 do not have this problem. It only seems to happen to files converted from previous versions or from IDML.
    Does not happen consistently, so I suppose it could be a font issue, although the files in question were originally built on a Mac and are being opened on the PC.

    OS is Win7 64 professional.
    Turned off Live Preflight etc., tried the .idml export, same problem.
    It's only on these specific files that have been opened from a .idml source which came from a Mac system. I had to replace fonts since we did not own the typefaces provided with the packaged files, so I am definitely suspecting a font issue. The original typefaces were OpenType and have been replaced with Adobe versions, although the problem does occur with the OpenType fonts in place.
    For now I can work in them using CS 5.5 with no trouble. When time permits I may rebuild these from scratch in CS6, as they are simple layouts anyway, although I also want to figure out exactly what is the cause. Fonts are the chief suspect even though I have them installed locally. I am going to try replacing them with completely different typefaces from newer sources to see if that makes a difference.

  • Span columns problem with Table of Contents order

    Hello,
    I'm having a strange issue with headings that span columns and Table of contents order. My document has a heading paragraph in a coloured box, which is then inserted in-line into a 2-column text box. The paragraph style for the box (set to in-line) is set to span all columns, so that the 2-columned text doesn't get messed up.
    When I create a table of contents, the Heading style that is inside the coloured box is being picked up fine, but even though it is inserted before the headings below it, it is showing up after the level 2 headings, instead of before.
    I have confirmed that the insertion of the blue bar is before the text below it, as when I remove the span columns option, the TOC works as it is supposed to. Is this a bug?

    Hi there, thanks for the reply.
    The only way I could move the inline box to the left was to make a custom anchor and change the X value, this did not affect the TOC unfortunately. I also checked the location of the invisible marker indicating the location of the inline text box, and it is definitely before the heading that follows. I confirmed this by removing the span columns option for that paragraph, and the TOC displayed properly after doing that, meaning there is likely some problem with the span columns option not properly recognizing the order of content.
    Regards,

  • Change portal Page layout from Web Dynpro

    I have some problem:
    I need to rearrange Portal Page layout from 2 columns to 1 collumn from Dynpro action. Decision to hide 1 Column or resize its width to 0 is good idea, but I do not now how.
    Absolute Navigation is wrong idea, because I need to go back to multiply IViews mode and I will lost my data context.
    I saw PageService - custom Portal service, where I can resize IViews.
    In my Netweaver 2004 this class is absent.
    Probably exist some Portal events to manage Page layout? Anybody knows?
    Thanks!

    Hi,
    For this we have to use eventing among the webdynpro components of two different views.You can refer this example for this.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e8d7cd90-0201-0010-4a8c-dd22fa16ca0a
    Thanks,
    Murthy.

  • How to decrease the width of left column in the "2 column layout"?

    Hi all,
    I create two webdynpro based iViews in the EP, then I create a page use the "2 column layout(Narrow:Wide)".I put one iview in the left column and another iview in the right column. When I preview my page, I found the left column still too wide. So how to decrease the width of my page's left column?
    Thanks and Best regards
    Deyang

    Hi Deyang,
    You have to create your own layout:
    - Navigate to System Administration->Support
    - Choose Portal Runtime -> Browse Deployment
    - Navigate under pcd or under temp, and download the layouts par (com.sap.portal.layouts.default.par.bak if I recall correctly)
    - Import that par as a project to Developer Studio
    - Make your changes (create a new jsp acording to the existing examples, and update the portalapp.xml accordingly)
    - Export to par (in a different name!) and deploy
    - In the portal content: new from par -> Layout (don't forget to mark it as a template).
    - Your new layout template will now be available when you create new pages.
    good luck!

  • Span column doesn't work for me?

    Hey guys
    I'm not sure if there's another question/thread about this issue I have. I've tried searching but didn't give me good results.
    Basically, I've received an IND file from my client. The main heading paragraph style has span column (across all) setup already. But according to my client, for some reason, it doesn't work. I've tried fixing but I can't tell what caused it.
    The main heading is a numbered-list heading. Would this cause the span column not working?
    The setting is pretty straight forward, with span set to across all columns and space after span set to 15mm (space before is 0mm).
    If I can get some direction to how to rectify this that would be fantastic because I've got a number of reports to typeset using this template.
    Thanks guys.
    Cheers
    Leanne

    Never mind. I figured out what was the problem.
    It only works if all the text in one text frame with columns.

  • Importing two-column text from Pages

    I've produced several successful calendars and books using the iPhoto service in the past couple of years, but one thing has me defeated.
    So far, I have used Pages to create text, then style it the way I want, and finally cut and paste it into the book project. It works perfectly. So far, so good.
    Now I want to do two-column text pages, instead of a full-width single-column layout, but I can't find a way to do it.
    I have tried exporting the two-column set out of Pages as a pdf, then using the Import command in iPhoto, but it is greyed out in the navigation window. No go.
    Any ideas?

    Do a Print to PDF of the Pages layout and select the Send PDF to iPhoto option. That will create a jpg image of the page which can be added to a full page layout in the Book. Here are a couple of crude examples of that from a Word document: Portrait oriented - Landscape oriented.
    Of course my example is single column but with a two column layout in Pages and in the landscape mode it would work just as well.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.
    Message was edited by: Old Toad

  • Portal Page layout from 1 col to 2 col

    Can any one guide me how to see properties of a portal page and change layout from 1 column to 2 columns?

    Hi
    You need to create a custom page layout. You can edit the JSP pages of 1 column layout and allocate 50% width for both the columns which previously was 100%.
    You can refer this documentation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9242a890-0201-0010-32a9-8516639c5afa
    Will certainly help you out....
    Regards,
    Ganesh N
    Reward points for useful answers!

  • TP3 Oracle Three Column Layout Template error

    Hi,
    if I choose for page template: Oracle Three Column Layout and run this page I get blank page with message: Error trying to include:viewId:/oracle/templates/threeColumnTemplate.jspx uri:/oracle/templates/threeColumnTemplate.jspxjavax.servlet.ServletException: Error in servlet
    thanks,
    Branislav

    Hi,
    if I exctract threeColumnTemplate.jspx from oracle-page-templates.jar and store it in my project as a template file it works and it works also with FF 2.0.0.11
    thanks,
    Branislav

  • 2-column layout with correct page breaks

    Hi there,
    I am trying to produce a 2-column layout in my form.
    The problem is: These columns stretch over more than one page and I just cannot get the page breaks right.
    I have a flowed layout with two adjacent subforms which form my columns. In these column subforms I fill lots of data from XML.
    Problem 1 is: At the end of the page I miss about 5 lines. They vanish in the page break.
    Problem 2 is: My second column starts getting filled only on the second page (which happens to be the page where the first column ends).
    I also tried this with one table with exactly one row. But there all lines after the first page disappear and I get empty pages instead.
    Has anyone ever come across this problem?
    What is a good safe way to build dynamic 2-column forms?
    Ulrich

    Hi Paul,
    the former. It is NOT like in a newspaper where the content runs from left to right from one column into the next and finally into the leftmost column of the next page.
    Im my case the content of the 2 columns is completly separat from each other: The data in the left column is distincly left-column-only data. As is the data in the right column distinctly right-column-only data.
    Actually it is not even sure, that the left column is longer than the right.
    It is absolutly o.k. to have  3 pages where the left column is empty and only the right column is filled.
    An example would be: Technical data of two articles to be compared: Left is the Mercedes-data and right is the BMW-data.
    Ulrich

Maybe you are looking for

  • XSLT mapping problem

    Hi Im doign xslt mapping in XI bw two structures..while doing htis i have come across a requirment, where i have to map different values to nodes which are repeating in different sub structures. Ex: source structure and target structure are same..  

  • G4 and cinema displays!

    will a new 23" cinema display work with a 2000 g4 power mac tower? the reason i am asking is because my current display just died and i dont have the money to buy a whole new mac pro system, but if i can buy the new display now then that will work fo

  • Purchased a used iMac

    Hi everyone, My father purchased a used iMac from one of his friends, and I set up all of his information (email, settings, password, etc.) for him. Here's the problem..... Whenever the computer is shut down or restarted, all of the settings informat

  • [SOLVED] makepkg of php fails, no useful error message

    I'm trying to use ABS to build PHP.  I run makepkg and the last lines are: checking whether build with IMAP works... no configure: error: build test failed. Please check the config.log for details. ==> ERROR: A failure occurred in build(). Aborting..

  • Acrord32.exe system error the program cant start because msvcp100.dll

    Hello Adobe Community, Im having problems with an XP Pro machine that is joined to a domain where i keep getting the following error message : " acrord32.exe system error the program cant start because msvcp100.dll" I can temporarily solve this by un