Flowing text from two column master pages

I'm trying to create a document with a two column master page using  two separate text boxes rather than a text box with 2 columns. When I flow the text into page 1 of the document it autoflows and creates the rest of the pages automatically but uses a page wide single column rather than the 2 columns I have on my master page. How can I make it create the new pages with the two columns on them? This is CS4.

I need to know EXACTLY what you've set up and how you are flowing the text before I can tell you what's going wrong.
Do you have a master text frame or frames? Did you override the master frame before placing the text? Are there column guides on the master page? Some screen captures might help, too. You can embed them in a post by clciking on the camera icon on the web page:

Similar Messages

  • Navigating from two different master pages to the same detail page

    Hi. Im using JDev 11.1.1.1.0 JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407. Fusion Web Application.
    I have two ViewObjects based on a unique entity Entity1 and each VO has a different set where clause. First, I create a master view page based on VO1 and a detail page based on the same VO1. Navigation is working fine using a link in the PK of selected row and using setCurrentRowWithKey.
    Next, I've created a second master view page based on VO2 and want to enable navigation to the detail page based on VO1. I figured the key is the same (Entity has a one column PK, and the same thing VO1 and VO2) but when I tried navigation with setCurrentRowWithKey or setCurrentRowWithKeyValue doesn't work.
    Can anybody provide steps to achieve this? Is it possible to do?
    Thanks.

    Hi,
    You might be using setCurrentRowWithKey method of VO2, if so, try to use setCurrentRowWithKey method of VO1(on which detail page is based)
    Sireesha

  • Blank page showing when changing from two column to one column pages

    This is the scenario:
    Document with two master pages - Page1 has two content areas - left column and right column, Page 2 has one content area the full page width named 'FullPage'
    One page set named PageSetOne - with multiple subforms, each with Pagination setting of Following Previous and Continue filling parent.
    Second page set named PageSetTwo - this has a single subform with Pagination setting of place on Page2. The child subform has itself a subform with Pagination setting of Place in Content Area 'FullPage'.
         This page set is initially set to be Hidden.
    Third page set named PageSetThree - this has a single subform with Pagination setting of place in Page 1 and a child subform with Pagination setting of Following Previous.
    [Obviously I am simplifying names and content here].
    The problem is this: when in design mode, there is a blank page showing at the end of the document whenever there are sufficient subforms in PageSetOne such that subforms are displayed in the right hand column.
    When subforms are removed so that nothing is showing in the right hand column then the blank page goes away.
    I have put a marker subform immediately after the last subform in PageSetThree and can see that the blank page is showing after this.
    Also, the following problem:
         When in preview mode, the extra blank page at the end does not display (which is good)
         BUT if the hidden PageSetTwo is made to be visible AND there is content showing in the right hand column prior to it,
         THEN a blank page is displayed just before the newly displayed PageSetTwo page (a single column page on Master page Page2).
    I have tried every combination of Pagination Place before and after settings and can find no way to avoid the blank pages.
    Does anyone have a clue as to what is going on and how I can avoid these blanks showing up?

    I have finally managed to solve this problem.
    The issue was not a subform extending too far out, it was a pagination setting, as Niall suggested.
    I created a blank document to analyse the issue closely, and lo, my new blank doc with all default settings, worked perfectly.
    So I revisited my forms and compared the pagination settings subform by subform.
    This is what I had to change to ensure that all pages flowed with no extras:
    PageSetOne (which is supposed to show using the two column master)
    set the top page Place = ‘In Content Area Leftcolumn’ and After=Continue filling parent
    All child subforms each with Pagination setting of Following Previous and Continue filling parent.
    PageSetTwo (to show in the full page column Master)
    set the top page Place = ‘In Content Area FullPage’ and After=Continue filling parent
    All child subforms each with Pagination setting of Following Previous and Continue filling parent.
    PageSetThree ( back to two column master)
    set the top page Place = ‘On Page1’ and After=Continue filling parent
    All child subforms each with Pagination setting of Following Previous and Continue filling parent.
    I discovered that the critical setting was for PageSetOne. The After setting needed to be Continue filling Parent
    Once I had those settings in order then the form performed as required.
    This has been a frustrating learning experience but at least ultimately successful.
    AJ

  • Customize text on Book Album Master Page?

    How can I change the text style of the text in a metadata text box on a Book Album Master Page, other than selecting from the limited choices in the "Set Text Style" drop-down list?  I would like to customize the font family, size, and color.
    I am working with a Custom Theme (having given up on modifying the existing themes).
    I can change the text parameters applied to the text boxes on the Master Page, but those changes are not applied to the text boxes based on that Master Page (even after reapplying the Master).  Those changes _are_ "held" by the text boxes on the Master Page, however.
    Thanks!

    With Metadata Boxes, when I select the box in "Edit Layout" mode, no changes made via the Fonts dialog are applied.
    The metadata boxes seem to be built rigidly into the themes.
    Assuming that is correct  , is there any way to add to or modify the styles shown in the "Set Text Style" drop-down?
    I have not tried to change the behaviour. There is a list of textstyles for the custom book template inside the Aperture Application bundle:  
    /Applications/Aperture.app/Contents/Resources/CustomBookTemplate/TextStyles.plis t
    When I open this file in Xcode I am seeing a list of fonts for Title, Cover Title, etc.
    The EXIF properties are formatted in
    /Applications/Aperture.app/Contents/Resources/CustomBookTemplate/TextStyles.plis t
    Probably you could create a new custom template by creating a copy of /Applications/Aperture.app/Contents/Resources/CustomBookTemplate  and editing these files in the copy, but as I said, I never tried this.

  • From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    Hi,
    Use NVL or COALESCE:
    NVL (col_a, col_b)
    Returns col_a if col_a is not NULL; otherwise, it returns col_b.
    Col_a and col_b must have similar (if not identical) datatypes; for example, if col_a is a DATE, then col_b can be another DATE or it can be a TIMESTAMP, but it can't be a VARCHAR2.
    For more about NVL and COALESCE, see the SQL Language manual: http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions119.htm#sthref1310
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Custom program to download texts from the Customer master

    Hi team,
    I want to create a Functional specification for downloading texts from the Customer master.
    Means we are trying to come up with a Zprogram development so that this program can be used later to download texts from the customer master.
    Can any one advice me what are the steps to do this....and what procedure be followed to finish this task
    Kindly advice from the Functional aspect
    Regards,
    saprules.

    Yes indeed.
    This mass download functionality would be very interesting to share.
    Thanks a lot!
    Best regards,
    Roel

  • How to copy and paste text from one photo book page to another.

    hello,i downloaded this software 2days ago,and i've been having so much fun with it. pls i need help on how to copy and paste text from one photo book page to another. Secondly how to copy my completed photo book pages project to another laptop for printing. thanks
    This question was solved.
    View Solution.

    Hi DG.
    The easiest way to copy an HP Photo Creations project to another computer is to click the Share button. That will upload the project to the Web and give you a link you can paste into an email. Clicking the link on the other computer allows you to download the project and personalize it. This quick video shows the process. (The screen looks slightly different now, but the concept is the same.)
    Another way to share a project is copy the project folder to a thumb drive. Look in Documents/HP Photo Creations/My Things to find your saved projects.
    Our customer support team would be happy to walk you through the process. Contact them at [email protected]
    Hope this helps,
    RocketLife 
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • Data merge from two columns

    Hello all,
    We have a requirement that we need to combine data from two columns. We have comments1 field in TABLE A and comments2 and comments3 fields in a TABLE B. The the report has a condition:
    Begin
    If status = 'Pre-Award' then
    Print comments1 from TABLE A;
    ELSIF
    status = 'Post-Award' then
    Print comments2 and comments3 from TABLE B;
    END IF
    END
    Tools version: Oracle reports version 6i.
    Thanks in advance.
    Arun.

    There's a couple of ways to do this.
    One way would be to create a placeholder column for your comments.
    The create a function (much like what you have already listed) to determine which comments to use and place the value of that comment into your placeholder column. You can then use it in that group just as you would any other field.
    Chad

  • I have never used PS, and I am trying to edit a brochure created by someone else.  I need to move text from one column to another

    I have never used PhotoShop and do not have time at the present. Please help me to move a section of text from one column to another in a brochure.

    Here are 3 options for future reference:
    1. With the setup you've described, apply a Match Move behavior to  the text and make the rectangle the source. Change the Transform parameter to Mimic source.  This way you can still adjust the text postion as needed, but the rectangle will drive the animation.
    2. Use a group to do the animation.  Put both your rectangle and text in the same group and animate the group's postion.
    3. Use the Link behavior.
    Each of these has it's advantages depending on what you need.

  • HT1766 Can I get back deleted text from two months ago

    Can I get back deleted text from two months ago

    I would contact your phone provider. The only way that you can recover text messages is by a count ordered subpoena.

  • Will Lightroom 5 flow text from page to page?

    A little + sign appears at the bottom right corner of a text cell when the text overflows. I find I cannot pick up the additional text by clicking the + sign to place it on the next text cell thus linking text from page to page. Am I missing something or is such a useful facility unavailable in Lightroom? If that's the case, is there a good reason for Lightroom not offering text linking between pages?

    No, it's not InDesign, though it's easy to understand why that + indicator may make you hope that kind of flow may work.

  • How do I "flow" text from one page to another

    I think I have a simple question that I cant seem to figure out. I am creating an electronic Letterhead for my office to use. What I need to be able to do is have a text box that starts on the first page, and "flows" the text to the the following pages as the user types the letter. Does anyone have any idea how to do this? A step by step answer would be very helpful.
    Thanks, Aaron

    First you'll need to save the form as a dynamic form. Once you've done that, you'll need to click on the field you want to expand and check the Allow Multiple Lines checkbox in the Field tab under Object. Then go into the Layout tab and check Expand to fit under Height.
    If this isn't exactly what you're looking for, a quick search using the forum search might help you find what you need.
    Regards,
    Dave

  • Repeat Text Field Value on Master page

    This might be a really simple question. I have a form with two master pages. The second is applied to all but the first page. On the second master page I have a text field that I populate with user entered data from a text field. I want this value to show on all pages after the first page (page 2 to n). It shows up with the value on page 2, but all the rest have a blank value. Do I need to script something to make it repeat for all pages? Any help would be appreciated.

    The simpliest method would be:
    Under the Object tab, select Binding, and change the Default Binding to Global. The TextFields you create must have the same name, and Global binding will populate all the fields.

  • Displaying text in two columns in SAP Script

    Moved to correct forum.  Please use a meaningful subject in future - I've edited it for you this time.
    Hello Everybody,
    I have a text to be displayed in Scripts. I want to split the text into 2 columns.
    Like in news paper.
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    Like this.
    Can someone tell me how to do that?
    Thanks,
    Edited by: Matt on Mar 11, 2009 4:31 PM

    As far as I believe....
    Always text flows out of the main window if it is completely filled.
    So, create an instance of the main window.
    Go to Page windows->Select the main window->Edit->Create
    You will get one more main window and that will be of type with the name Main01
    Go to Screen painter and adjust the window in the way that you required.
    Just start printing the text by writing the code in main00.
    Automatically main01 will have the same code assgined(you can check if you want) and the data gets displayed once the main 00 window is filled.
    Hope it helps....

  • Change the font typeface of text object in form Master Page

    Dear all,
            I am creating a Adobe Livecycle form with multi-language support. Simply, there is a header title that is a text object in master page. I want that it can be converted to simplified Chinese from English and change its font typeface to “SimSun” when printing begins. I try the following code on its “Initize” event to do this.
    Simply, I configure a print flag(Y/N) in form so that it will convert into simplified Chinese and change the font typeface to ‘SimSun’ when the flag is reset to ‘Y’.
    Int langInt = i ;       
    If (pFlag  == “Y”) {
               PaymentRequisitionApp.pageSet.Page1.MasterSubform. Text1.value.text.value = l_XML.Record[i].TITLE.toString();
               PaymentRequisitionApp.pageSet.Page1.MasterSubform. Text1.font.typeface ="simsun";
    I found that it doesn’t work. There is something else in the form to reset the title to English. So I try to paste the code above in “calculate” event of tex1 object. It’s work!
    Question:
    1.      Anyone can tell me that the implement order of the events in the form?
    2.      Does it exist other better way to do this?
            3.  Which event, function or any else let the master page’s object to be reset?

    this link for downloading the sample is valid:
    http://rapidshare.com/#!download|935|429748707|TEST2.pdf|84.309

Maybe you are looking for

  • How Do I create an Admin account?

    Hi This sounds silly but.... How do I set up an administrator account ? I am using DW CS3 and ADDT and PHPMYADMIN I can create a table with a level_user field and al the other usual fields I can use the login wizard and / or the ADDT control panel to

  • Will Installing more RAM improve performanc​e, IF laptop has "available memory" not being used?

    My laptop has 2x 1GB of RAM. Right now, and usually, The Physical Memory shown in Task Manager, shows that there is "available memory" (currently it's 500megs worth). (And "system cache" says 300megs.) There is also, right now, 2.5GB of page filing b

  • Placing graphics OVER a video in iWeb?

    Hi, I have a video on my iWeb site and I want to place a graphic over it to act kind of like a picture frame. The graphic I want to use has transparent parts I created in photoshop so that, when I "send to front" on iWeb, it appears OVER my video and

  • Floating point formats: Java/C/C++, PPC and Intel platforms

    Hi everyone Where can I find out about the various bit formats used for 32 bit floating numbers in Java and C/C++ for both Mac hardware platforms? I'm developing a Java audio application which needs to convert vast quantities of variable width intege

  • Spool to Word Document

    Can sometell me how can we convert the Spool to the Word Document? Please give me the detailed procedure. Thanks, Sirisha Matta.