Auto Force Framed Objects to Next Page

How do I auto force a placed object to the next page? As you can see in the picture, I have two objects almost on top of each other. The bottom object is being forced up because there isn't enough room at the bottom of the page. I know I can force it to the next page using a hard line break, but I want the content to flow on its own as I make changes. I did try playing with the keep options, but to no avail.

Well, I was hoping to look at the same portion of text in both images, but your first image shows VAC 4, House Plans and the Story Editor shows VAC 4 Wise Builders, which I imagine is a different part of the document. Either way, I don't know of a way to move an anchored object to another page without moving the anchor itself. I assume you are using a custom anchor, as opposed to Inline or Above Line, correct?
By looking at your Story Editor image, I can see you separate your paragraphs with double paragraph returns, you have a double-tab in the paragraph after the anchor, and a whole string of paragraph returns, possibly as a way to allow space below your last visible paragraph, or to advance to the next page. This isn't what you are asking about, but that isn't the most efficient typesetting technique. You would be better off separating your paragraphs with the "Space After" paragraph attribute, using only one tab (and setting the tab position so you don't need two), and instead of lots of paragraph returns, you can either use a "Next Frame" character, or set the Keep Options of the following paragraph to begin on a new page/frame/column (which ever you have next).
Personally, I would anchor an object with the text that describes or referrs to the object, so it wouldn't really be a benefit to move the anchored graphic to the next page if the text is going to stay where it is. I would probably move the text and the anchor along with it to the next page (by either replacing the paragraph return that preceeds that paragraph with a "next frame" character, or setting the keep options as described earlier.
On the other hand, maybe I'm not understanding what you have or what you want. If you think that's true, maybe try describing it in a different way.

Similar Messages

  • I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1"

    I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1" How do I do this?

    Hi H4S,
    Click at the end of the Tile page.
    Menu > Insert > Section Break.
    Click in the second Section. Insert a page number in the Header or Footer.
    Inspector > Layout > Section:
    Regards,
    Ian.

  • Turn Off Auto format that drops last line of a paragraph to next page

    When I am writing multi-page papers, I will occasionally experience an auto-format annoyance where, if the paragraph I have written ends with just half a life of text on the next page, pages automatically drops the last full line of text down to the next page as well. I suppose pages does not want the short line to be lonely, but it leaves a large gap at the bottom of the page - particularly when the lines are double-spaced. I often have page limits on my assignments and am trying to squeeze as much in as possible int he space I am permitted, so losing these lines of text can be a great annoyance. How do I turn this feature off? Thanks.

    Welcome to Apple Discussions
    Walt

  • Force NEXT page

    Hi to all,
    can anyone say me how to force(call) next page.

    So this is something quite different
    at first you need to create that seperate page in your sap-script form.
    it´s getting a little complicated if you aint have control over you driver program but still will work out.
    Search yourself a textelement in your script which is getting triggered as last one.
    probably something like
    /E  supplement_text
    in this text element program a jumpoff to an external perform coding like:
    /: PERFORM PROCESS_LAST_PAGE in program XXX
    /: ENDPERFORM
    this calls the routine PROCESS_LAST_PAGE in program XXX, where XXX should be some z-program of you.
    The routine in this program should have following form:
    FORM PROCESS_LAST_PAGE TABLES
                                         intab STRUCTURE itcsy
                                        outtab STRUCTURE itcsy.
    endform
    in this routine you can do a write form on a text element on your "last" page, this should trigger it.

  • Full screen - view zoom - no auto turn to next page ?

    Hi
    I have an interactive pdf with a full screen button nested into a master layout.
    Whenever the pdf is in full screen mode, when I click anywhere the pdf turns to the next page!
    How can I keep the full screen mode but delete the 'goto next page' action as I really dont need it and it makes my pdf confusing?
    Thanks
    J

    If you want take it off in your own computer go to Preferences>Full Screen tab and uncheck Left click to go forward....
    If you want to make it document-level preference, you probably have to use some javascript command....

  • Problem with "Next Page" And "Zoom" in CrystalReportViewer With VS 2010

    Hello,
    i am using crystal report v 13 sp1 with visual studio 2010,
    As mebtioned, the next page and the zoom is not working in my report, whiwh has as data source "Stored Procedure"
    This is my code, and i think it's correct, i was using this code in previous versions of crystal report (cr10) and it worked fine,
    When i used the Data set , the next page and zoom worked fine, but with stored procedure it doesn't work,
    Note: when i open the Tree of Data on the left, then click on the next page or the zoom, it become funtional, it's very weird,
    protected void *Page_Init*(object sender, EventArgs e)
    if (!IsPostBack)
    reportDocument = (ReportDocument)this.Page.Session ["_reportDocument"];
    if (reportDocument != null)
    string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
    LoadReportRessource(reportDocument);
    TableLogOnInfo log = new TableLogOnInfo();
    ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0]; //la premiere connectionstring
    SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
    log.ConnectionInfo.ServerName = SConn.DataSource;
    log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
    log.ConnectionInfo.UserID = SConn.UserID;
    log.ConnectionInfo.Password = SConn.Password;
    log.ConnectionInfo.Type = ConnectionInfoType.SQL;
    for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
    reportDocument.Database.Tables.ApplyLogOnInfo(log);
    for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)
    CrystalReportViewer1.LogOnInfo.ConnectionInfo = log.ConnectionInfo;
    CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session ["_paramFields"];
    CrystalReportViewer1.ReportSource = reportDocument;
    CrystalReportViewer1.DataBind();
    CrystalReportViewer1.ShowFirstPage();
    else
    CrystalReportViewer1.ReportSource = (ReportDocument)this.Page.Session ["_reportDocument"] ;
    Edited by: Soumaya on Sep 7, 2011 6:16 PM

    @Don:
    Sorry, but i donno what do you mean by "what is the App Pool running in 32 or 64 bit?",
    i am running the application locally, ( the IIS is installed locally ),
    as i told you, my OS is 64bit,
    And yes i tried a very simple report, with just one field , and the "next button" is also not working,
    Its only not working with stored procedure, in the others methods ( push or pull method is working fine)
    i think its a problem in refreshing page, because when i open the tree on the left, then click on next page or zoom, its works fine
    @Ludek:
    i changed my code as below, and it doesn't solve my problem:
            ReportDocument reportDocument;
            protected void Page_Init(object sender, EventArgs e)
                if (!IsPostBack)
                    reportDocument = (ReportDocument)this.Page.Session["_reportDocument"];
                    if (reportDocument != null)
                        string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
                            TableLogOnInfo log = new TableLogOnInfo();
                            ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0];
                            SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
                            log.ConnectionInfo.ServerName = SConn.DataSource;
                            log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
                            log.ConnectionInfo.UserID = SConn.UserID;
                            log.ConnectionInfo.Password = SConn.Password;
                            log.ConnectionInfo.Type = ConnectionInfoType.SQL;
                            for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
                                reportDocument.Database.Tables<i>.ApplyLogOnInfo(log);
                        this.Page.Session["_reportDocument"] = reportDocument;
                        CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session["_paramFields"];
                        CrystalReportViewer1.ReportSource = reportDocument;
                        CrystalReportViewer1.ShowFirstPage();
                else
                    CrystalReportViewer1.ReportSource = this.Page.Session["_reportDocument"];
    Edited by: Soumaya on Sep 8, 2011 10:39 AM

  • How do I prevent Pages from pushing paragraphs to next page when they would otherwise begin on the last line of the previous page?

    I am writing papers for school which have strict page limits so I can't afford to be losing lines at the bottom of a page because Pages thinks it looks better to have a new paragraph start on the next page. It does this automatically and I have to go back and manually format to get the first line of the paragraph to start on the last line of the previous page. This then creates problems down the line when I am editing so I would really like to be able to turn the feature off.
    e.g. with Pages auto-formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
    -----page 2-----
         Paragraph #3 blah blah
    blah blah
    e.g. after manual formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
         Paragraph #3 blah blah
    -----page 2-----
    blah blah

    Change the keep with next rules in:
    Inspector > Text > More > Pagination & Break
    Peter

  • How can I insert text in Pages so it flows to the next page?

    I try copying a block of text into Pages but it cuts off at the end of the page instead of flowing to the next page. How do I fix this?

    You have probably started with a Layout mode template instead of a Word Processing template. See the sidebar in the Template Chooser for which is which.
    Alternatively you may have pasted an object (possibly from the Internet), not text into a Word Processing template. Click inside the object and copy the text, then delete the object and try pasting again.
    Peter

  • How can I forward next page, and then pop-up a download dialog box.

    My require is that pop-up a download dialog box after forwarding next page.
    I have read the coding in the processFormRequest of current page like below,
    but I find out that it only can pop-up a download dialog box,
    however, it can't forward the next page.
    pageContext.setForwardURL("OA.jsp?page=/oracle/apps/xxfm/fm002/webui/TEST001PG",
    null,
    OAWebBeanConstants.KEEP_NO_DISPLAY_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAException.INFORMATION);
    //set default file name: [YYYYMMDDhhmm_IN.EXCEL,FILE_NAME.csv]
    StringBuffer strFileName
    = new StringBuffer().append((pageContext.getCurrentDBDate().toString().substring(0, 16))
    .replaceAll("-","").replaceAll(" ","").replaceAll(":",""))
    .append("_IN.").append(strExcelFileName).append(".csv");
    //give csv file content
    BlobDomain csvFileBlob = (BlobDomain)am.invokeMethod("createCsvFile");
    //setenv
    HttpServletResponse response
    = (HttpServletResponse)pageContext.getRenderingContext().getServletResponse();
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment; filename="+strFileName.toString());
    System.out.println("fileName : "+strFileName.toString());
    //download
    InputStream fileIn = csvFileBlob.getBinaryStream();
    long fileLen = csvFileBlob.getBufferSize();
    int readBytes = 0;
    int totalRead = 0;
    byte blockgbyte[] = new byte[65000];
    response.setContentType("application/x-msdownload");
    response.setContentLength((int)fileLen);
    while((long)totalRead < fileLen)
    readBytes = fileIn.read(blockgbyte, 0, 65000);
    totalRead += readBytes;
    response.getOutputStream().write(blockgbyte, 0, readBytes);
    fileIn.close();
    response.getOutputStream().flush();
    I don't know what's matter in the app, can you tell me how to deal with it.
    Thanks in advance.

    Hi there,
    I have a similar requirement. User will download search results in a CSV file after which I want either the page to be refreshed or to be able to goto a Confirmation page or navigate to another page.
    I tried using setForwardURL / forwardImmediately / redirectImmediately methods as well as redirectToDialogPage. Since we use pageContext.setDocumentRendered(false); and response.getOutputStream().flush(); methods, the HttpResponse is already committed.
    Hence, the page does not redirect to another page as Request is processed and Response is complete. In case of methods like setForwardURL A JSP forward redirects the same request object to the target URL.
    Can anyone help here to achieve the expected requirement?
    Thanks.

  • How to move one page header details to next page lines details

    Hello,
             I have a requirement in custom page one field having a check box's like enable or disable and in that page one "Select" button.
             Once we enable the check box and click on "Select" button it will move into the next page and display the selected rows in that page.
         How to achieve this please help me in this.
    Thanks&Regards,
    Rama

    Hi,
    // processFormRequest()
    OAMessageCheckBoxBean InventoryCheckBoxBean = (OAMessageCheckBoxBean)webBean.findChildRecursive("InventoryCheckBox");
    Object InventoryCheckBoxObj = InventoryCheckBoxBean.getValue(pageContext);
    String InventoryCheckBoxValue = InventoryCheckBoxObj.toString();
    HashMap hm = new HashMap(1);
    hm.put("myParam", InventoryCheckBoxValue );
    //In the next page get the value using below
    oapagecontext.getParameter("myParam")
    Thanks
    Sandeep

  • How to print items in the MAIN window of the NEXT page (smartform)?

    Dear forumers,
    There are two pages (FIRST and NEXT) in my smartform with the same MAIN windows in each of the pages. Whatever that are changed in FIRST-MAIN window will also be seen in NEXT-MAIN window.
    I will need to control the printing of table TABLE3 contents (already contained in the MAIN window) such that if a variable V_MAT_PRINT is 'X', the TABLE3 contents will only be printed in NEXT page and not printed in FIRST page at all.
    How may I achieve this? Please help.
    Thank you.

    >
    Mohammed Ahasanullah Mulla wrote:
    > Hi Deborah,
    >
    > I had also faced a similar situation,in my case it was three pages..However i will try to tell you for 2 pages..After the second table .Add a program lines and force a page break only if V_MAT_PRINT is 'X'. After the program lines add a command and make the go to new page as second page.This will solve your problem.I have done the same and its working fine .If you have any questions do ask.
    >
    > Thanks,
    > Ahsan
    Hi Ahsan,
    Here's my case.
    If V_MAT_PRINT is 'X', print the following:-
    FIRST page, MAIN window
    - TABLE1
    - TABLE2
    - TABLE4
    - TABLE5
    NEXT page, MAIN window
    - TABLE3
    If V_MAT_PRINT is not 'X', print the following (no additional controls / changes are needed, everything remains unchanged):-
    MAIN window
    - TABLE1
    - TABLE2
    - TABLE3
    - TABLE4
    - TABLE5
    In this case, is a page break suitable? I doubt it as TABLE4 and TABLE5 will still need to be printed back on the FIRST page regardless of the V_MAT_PRINT value.
    Please advise further. Thanks.

  • How to Print next Page in smartform ?

    Hello ,
    I want to print next page in smartform.
    The situation is :-
    I am passing an internal table containing list of personal numbers.
    I have to print their details . Every candidate's detail should be printed on a new page .
    I have designed the whole form , but I am not print their details on a New Page.
    Please guide.
    Thanks in Advance.

    Hi, Nikita.
    Please Have a Look the following Link
    [MODERATOR MESSAGE: SapScript/Smartform questions go in FORM PRINTING forum|/thread/1360534 [original link is broken];
    So, Please Post Questions Regarding SapScript and Smartform in FORM PRINTING.
    1. First of all you need to set a Flag at the end of every Personal Number.
    2. Than Right Click on the object Like Main Window
    --> Create --> Flow Logic --> Command
    3. From First Tab of Command General Attributes Check the Check Box Go to New Page and Select Your Page
    4. In the Conditions Tab Give you Flag Condition.
    Hope will help you to solve out your problem,
    Please Reply if any Issue,
    Best Regards,
    Faisal

  • How do I get rid of the "Loading Next Page" thing?

    Recently my Firefox started pre-loading pages. As I scroll to the bottom of a web page I get a notification pop-up at bottom right, saying "Loading next page" ... but all it seems to do is reload the page I'm already on, creating a situation where I can scroll down into infinity and keep seeing the same page. It slows down my browsing and is really annoying me! I have looked through my add-ons and can't see anything that would be doing this, so I have to assume it's something Firefox has decided to put in ...? Anyone have any ideas at all about the origins, and/or how to stop it happening, please? I am using Windows 7 64-bit on a laptop.

    This will be caused by an add-on, and checking your list of add-ons, the likely culprit is [https://addons.mozilla.org/en-US/firefox/addon/9825/ FastestFox], the description of the add-on states it can "auto-load the next page".

  • Table Problem x2 within Pages: 1) In the Header; 2) Maintaining a table's starting point when carrying over to the next page.

    Pages '09 v4.1
    Problem 1:
         I am working with a 2-column Page document. Its my goal to have three items listed in a header in particular positions. Far left shows the paragraph number the page starts with, in the center is a title of the contents of the page, and on the far left is the last paragraph number to appear. To place these three items in the desired positions requires the insertion of a lot of spacing on both sides of the 'centered' title along with counting the characters of the title to find its center to alighn with the center of the page. 253 pages of this to will qualify me to be labled with a severe case of Obsessive Compulsive Disorder. I don't want OCD.
         However, by installing a one row/3 column table in the header my task was made a lot easier in alighnments. But, another problem reared up. Within the header underneath the table is a vertical space remaining. This vertical 'tallness' is equivalent to the font size of 10. Its taking up too much space between the header and the text. It needs to be reduced or eliminated.
         On the left-hand page I am able to reduce the font as far down as '1'. I've settled on using '3'. However, on the right-hand page the font will not accept any size selections be they less or more and remains stubbornly at font 10. Within a Header that does not have a table, I am able to change the font of both left and right pages.
         Is there a another way to approach what I desire for the header other than installing a table in it? Is there a way to alter the font on the right hand pages?
    Problem 2:
         Whenever I create a table following text already on a page all is right until the table's growth in construction laps over to the next page. At that point the first row snaps to the top of the following page leaving an undesired area (space) between the last line of the text on the preceding page. Whenever I attempt to drag the table to the desired position it snaps back. This only happens when the table is larger than the remaining area of the page. If the table is started at the top of an unused page and runs beyond the confines of that page than it continues as expected onto the next page duplicating the table header. But to do this it must begin at the top of an unused page. Is there a means to have a table placed in the remaining space of a page and what does not fit continues to the next page in effect having a partial of the table on each page?
    So there you have it. Christmas is over and its back to work. Thank-you for your attention.

    Regards re-positioning a table:
    I went to Inspector>Wrap>Object Placement/Inline (moves with text) and found that the inline option was selected. Some of the rows within the table have two lines of text. Again, I dragged the table to the desired position on a page that is partially composed with text and got the same results as before -  the table snapping back to the top of the following page where it initially resided. In this current position the 2-page table does break as it should on the following 3rd page. Below is a schematic of the appearance of the 2-pages involved.
    Page 1 left side.
    TEXT 1-line as 1-column
    TABLE (5-rows)
    TEXT (2-columns) 14-lines left column and 13-lines right column.
    [Layout Break] otherwise the above textual columns would be all on the left side of the page.
    TEXT 1-line as 1-column
    * The desired insertion point for a two page table on a page that is 40% filled with the above descriptions.
    Page 2 right side.
    A 2-page table flowing or breaking into a 3rd page.
    Page 3 left side.
    The overflow of the subject table.
    [Layout Break]
    [Section Break]
    Is there some other way to anchor a table to the text other than Inspector>Wrap>Object Placement/Inline (moves with text)?

  • AllinOne.js[dynamic] error while zooming and navigating to next page

    hi..
    i'm using crystal report 13 and vs2010 in 32 bit OS
    reports are working fine but when i click to next page
    or zoom or find a word then
    the allinOne.js[dynamic] file opens
    and shows the below error..
    Microsoft JScript runtime error: 'children.length' is null or not an object
    and the following is error in file
    A=G.children.length; it is showing A is undefined.
    what to do ..  i dont know i'm confused..

    I think we have the same or a similar problem. We converted
    our solution from Crystal Reports XI to Crystal Reports VS2010. To view the report
    we use the CrystalReportViewer on a web form (aspx file with code behind).
    Everything (except the known issue with the blank viewer on first use) is ok
    with IE9 but with IE7 and IE8 export and zoom are not working. When I click on
    zoom e.g. 125% the internet tools shows SCRIPT1032: Invalid Character, if I
    click on export it is not possible to select an export file format other than
    the selected one internet tools show errors SCRIPT13: Type Mismatch ‘return’
    and SCRIPT1032: Invalid Character.
    Problems with Zoom and Export
    Error on zoom
    Error on export
    We need at least IE8 support for Windows XP, our software only supports Internet Explorer, so other browsers are no alternative.
    Any help regarding these issues is really appreciated.

Maybe you are looking for

  • Cisco Nac 3310 Upgrade From 4.1.6 to 4.7.2

    Hi, I've to upgrade the NAC Enviroment from 4.1.6 version to 4.7.2 version. This is the scenario. 2 CAM 2 CAS on 3310 Platform in HA-Pairs. On Cisco WebSite i found that upgrading to 4.7.2 is possible by this way: 4.1.6 --> 4.1.8 --> 4.5.1 --> 4.7.2.

  • How to handle duplicate nodes in xslt mapping

    Hi, in my scenario that i have a source mapped to the canonical structure and from canonical to target. source structure <empid> <national_id> canonical structure <id> 0 to unbounded     <id>     <type> the mapping from source to canonical is like i

  • What is MULTI Operator in PCR

    Dear Experts, Can anyone please brief me regarding the function MULTI  Operator in PCR from where the values are captures in the field AMT,RTE,NUM.It is Payroll Operator.Thanks well in advance. With Regards Shaik

  • Error Message 0x800a1391 - JavaScript runtime error: 'bobj' is undefined

    I have a project which I upgraded from Visual Studio 2012 and the version of Crystal Reports for Visual Studio that worked with VS 2012.  I upgraded the project to Visual Studio 2013 and waited for Crystal Reports to be released for VS2013.  Once it

  • Edit mode pixel coordinates

    Hi all: On one computer I get the size of controls shown in a little pop-up at the bottom of the computer window as I'm resizing a control in the edit environment.   On another computer I don't.  I can't seem to find in the options menu how to turn t