Tray displaying all Pages

It would be awesome if there was a tray or tab that displayed all pages so we wouldn't have to keep jumping back and forth between the site map and page.

When this happens with a Word document opened in Pages is is usually due to the tables in Word is different handled in Pages. Word can have tables spanning over many pages and cells spanning over several pages and Word happily split the cell. This Pages can't do. Pages can only split between rows. If the cell is too large the table will not split properly. The table will only be partly shown.
Ask the creator of the Word document to split the rows/cells in smaller parts and Pages will be able to open the whole document.
You can also create a Custom paper size the are 3 - 4 - 5 - times longer than the usual size and change the paper size for the document . Now you will probably be able to split rows so that are not so high . When you are done you change the paper size again.

Similar Messages

  • Preview App not displaying all pages

    I am finding under Mavericks Preview App is not displaying all pages of some pdf's. 
    If you turn on thumbnails you can see and select all the pages but it's not possible to scroll down through all the pages.  Weird and annoying...

    First, before you do anything else at all, make a copy of your file as a backup. You said "Book" but I'm thinking you mean in one file, not a combined file InDesign Book (.indb) project.
    Now you need to test to see if this is a program problem or a file problem.
    Are the pages still there? Can you choose them from the navigation box in the lower left corner of the document window?
    Is this happening with any other documents? If you export this file to .inx (Interchange format) then open that, do the pages display properly?
    If it's happening in other docs, or if .inx doesn't solve the problem, look at how to replace your application preferences here: Adobe InDesign CS4 * Setting preferences

  • PDF won't display all pages

    I'm having problems with a PDF I'm generating, I'm using the presets, never have had the problem before, but some of the pages won't display, there's only a white page. Has anyone else had this problem before? How did you work around it?
    Thanks!

    Here is a GoogleDocs PDF of the particular PDF I'm having issue with: https://docs.google.com/fileview?id=0BzFhXCwCx4SzZDhiN2FjZWEtM2IyNS00Njg4LWI5NTQtNTc5ZDVlM GNhNWVk&hl=en
    Yes, it PDF's on it's own.

  • Smartform Spool issue - Not pulling all pages

    Hi,
    I am expecting aorund 2000 pages of spool file with a smartform driver program.
    My spooljob is limiting me to only 33 pages and job is still active  when i check using SM37.
    Anything related to spooling is wrong in my code?
    SORT T_ITEM BY FKDAT.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME           = P_FORM
        IMPORTING
          FM_NAME            = FM_NAME
        EXCEPTIONS
          NO_FORM            = 1
          NO_FUNCTION_MODULE = 2
          OTHERS             = 3.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LS_COMPOSER_PARAM-TDNEWID = 'X'.
      LS_CONTROL_PARAM-PREVIEW = ''.
      SORT T_HEADER BY NAME1 KUNNR.
      DATA: V_PREV_CUR LIKE BSID-WAERS.
      LOOP AT T_HEADER INTO WA_HEADER.
        REFRESH: ITEM_ITAB, ITEM_ITAB_TMP.
        CLEAR: V_PREV_CUR.
        LOOP AT T_ITEM WHERE KUNRG = WA_HEADER-KUNNR.
          MOVE-CORRESPONDING T_ITEM TO ITEM_ITAB.
          APPEND ITEM_ITAB.
        ENDLOOP.
        SORT ITEM_ITAB BY WAERS.
        LOOP AT ITEM_ITAB.
          IF SY-TABIX <> 1.
            IF V_PREV_CUR <> ITEM_ITAB-WAERS.
              SORT ITEM_ITAB_TMP BY FKDAT.
              CALL FUNCTION FM_NAME
                EXPORTING
                  ARCHIVE_INDEX        = TOA_DARA
                  ARCHIVE_INDEX_TAB    = ARC_IND_TAB
                  ARCHIVE_PARAMETERS   = ARC_PARAMS
                  CONTROL_PARAMETERS   = LS_CONTROL_PARAM
                  MAIL_APPL_OBJ        = LS_RECIPIENT
                  MAIL_RECIPIENT       = LS_RECIPIENT
                  MAIL_SENDER          = LS_SENDER
                  OUTPUT_OPTIONS       = LS_COMPOSER_PARAM
                  USER_SETTINGS        = SPACE
                  WA_ITAB              = WA_HEADER
                IMPORTING
                  DOCUMENT_OUTPUT_INFO = DOCUMENT_OUTPUT_INFO
                  JOB_OUTPUT_INFO      = JOB_OUTPUT_INFO
                  JOB_OUTPUT_OPTIONS   = JOB_OUTPUT_OPTIONS
                TABLES
                  WA_DEP               = ITEM_ITAB_TMP
                EXCEPTIONS
                  FORMATTING_ERROR     = 1
                  INTERNAL_ERROR       = 2
                  SEND_ERROR           = 3
                  USER_CANCELED        = 4.
              IF SY-SUBRC <> 0.
                WRITE: / 'ERROR in passing variables to the smartforms '.
              ENDIF.
              LS_COMPOSER_PARAM-TDNEWID = SPACE.
              LS_CONTROL_PARAM-NO_DIALOG = 'X'.
              LS_CONTROL_PARAM-PREVIEW = ''.
              REFRESH ITEM_ITAB_TMP.
              MOVE-CORRESPONDING ITEM_ITAB TO ITEM_ITAB_TMP.
              APPEND ITEM_ITAB_TMP.
            ELSE.
              MOVE-CORRESPONDING ITEM_ITAB TO ITEM_ITAB_TMP.
              APPEND ITEM_ITAB_TMP.
            ENDIF.
          ELSE.
            REFRESH ITEM_ITAB_TMP.
            MOVE-CORRESPONDING ITEM_ITAB TO ITEM_ITAB_TMP.
            APPEND ITEM_ITAB_TMP.
          ENDIF.
          AT LAST.
            CALL FUNCTION FM_NAME
              EXPORTING
                ARCHIVE_INDEX        = TOA_DARA
                ARCHIVE_INDEX_TAB    = ARC_IND_TAB
                ARCHIVE_PARAMETERS   = ARC_PARAMS
                CONTROL_PARAMETERS   = LS_CONTROL_PARAM
                MAIL_APPL_OBJ        = LS_RECIPIENT
                MAIL_RECIPIENT       = LS_RECIPIENT
                MAIL_SENDER          = LS_SENDER
                OUTPUT_OPTIONS       = LS_COMPOSER_PARAM
                USER_SETTINGS        = SPACE
                WA_ITAB              = WA_HEADER
              IMPORTING
                DOCUMENT_OUTPUT_INFO = DOCUMENT_OUTPUT_INFO
                JOB_OUTPUT_INFO      = JOB_OUTPUT_INFO
                JOB_OUTPUT_OPTIONS   = JOB_OUTPUT_OPTIONS
              TABLES
                WA_DEP               = ITEM_ITAB_TMP
              EXCEPTIONS
                FORMATTING_ERROR     = 1
                INTERNAL_ERROR       = 2
                SEND_ERROR           = 3
                USER_CANCELED        = 4.
            IF SY-SUBRC <> 0.
              WRITE: / 'ERROR in passing vars to the smartforms '.
            ENDIF.
            LS_COMPOSER_PARAM-TDNEWID = SPACE.
            LS_CONTROL_PARAM-NO_DIALOG = 'X'.
            LS_CONTROL_PARAM-PREVIEW = ''.
          ENDAT.
          V_PREV_CUR = ITEM_ITAB-WAERS.
        ENDLOOP.
      ENDLOOP.

    Hi Vara,
    By default there will be a value set by the administrator for the number of pages you can view in the spool. So to me it looks like this value is set to 33 in yoru case. You can go to setting from the same screen and change thsi setting to display all pages. But beware that this may take a long time some times and also give you a dump at times.
    -Guru

  • Finding all pages attached to a template without updating the pages

    Is there a fast way to identify all the pages that are attached to a specific template?
    I inherited an unfinished site that was done by a compulsively disorganized person, and I have to get the site functional ASAP. There is a very large number of templates and pages, and I need to identify which templates go which pages to get the site cleaned up most efficiently.  If anyone is familiar with MS Access, the equivalent of the database documenter function for Dreamweaver would be great.

    Yes. Go into one page that is based on the template. Find the code up near the very top of the head section that reads:
    <!-- InstanceBegin template="/Templates/templateFileNameHere.dwt" codeOutsideHTMLIsLocked="false" -->
    Copy this fragment of code and do a Find in "Entire Current Local Site"; Find All.
    In the Results Window will be displayed all pages based on that template.
    If, instead of searching for a specific template, you searched for just the first part of that string,
    <!-- InstanceBegin template="/Templates/
    your results will list the different pages in the left column and the citation of your search text on the right column.
    You can save the results (it will be an xml file). To save as an xml file, click on the small floppy disk icon two down from the green flippy triangle on the Search Results Panel. The default file name will be ResultsReport.xml, but you will have the opportunity to give it more meaningful name before it is saved.
    Such a file may be opened in Excel or as an XML file. When opening in Excel, you will be given a choice of formats to view it in.
    Beth

  • Footer display without space in all page (in footer place)

    Hi  All
    wish  you merry cristmas.
    in my layout my customer wants  all pages contains the record upto last  .
    if i will dispaly upto last  in main window , then where i will make the footer .
    when i am making the footer in first page all the pages footer space is comming blank
    which my custmer does'n't want.
    By....

    Hi  Sai ,
    Thanks , for reply .
    sorry , i not using the table
    i am selecting the data and displaying on all pages
    and use the templage for table .
    but what is happening , all the pages  displaying data upto footer  but last 100 cm comming blank  due to  footer place.
    and the last page comming footer
    But my customer doesn't want  to blank  in place of footer.
    by....

  • Hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a

    hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a default settings upon installation in previous editions of adobe reader .i use a windows 8 pc now.thank

    For sideloaded content the nook pulls the metadata from ePub file itself.  I would suggest looking at a program like Sigil or Calibre that will let you edit the metadata in the book to make it appear like you want.
    For the PDF vs ePub - No, that's the way PDFs work (think of them as graphics, not text), wheres ePubs are Web Pages - so  no you can't them to behave exactly alike without converting the files.

  • How to display all data on one page in web app

    Hello.
    So I have web app JSF (IceFaces framework) + JBoss all Crystal Report working perfectly. So I have page with Crystal Report tags (e.g.
    <bocrv:reportPageViewer reportSource="#{crystalReport.reportPath}" ...
    in this report I have table with some data (data from DB) and I want to display this data on one page. Unfortunately now this data are moving to the next page and unfortunately I even donu2019t know how switch to the next page (I see only info e.g. 1with 2).
    So how to display this data on one page if its impossible how to torn on pagination.

    So I canu2019t do this, I canu2019t display all data on one page (until Iu2019m using JSF tags)?
    In JSF tags Iu2019m setting only path to file. In my bean Iu2019m using u201CReportClientDocumentu201D object itu2019s easy way to load report file (u201Copenu201D method) and set parameters (u201CgetDataDefController().getParameterFieldController()u201D method) and also connect to data base (u201Clogonu201D method) but I havenu2019t this property u201CsetSeparatePages(boolean)u201D.
    Maybe Iu2019m doing this wrong and there is a simpler way maybe I can use somehow u201CCrystalReportVieweru201D please give my any advice.

  • As a graphic designer, I am creating ePubs that will be seen on iPads running, ios5, ios6 and ios7.  Each version displays the page differently.  Is there a way to make the display consistent on all systems?

    As a graphic designer, I am creating ePubs that will be seen on iPads running, ios5, ios6 and ios7.  Each version displays the page differently.  Is there a way to make the display consistent on all systems?

    As a graphic designer, I am creating ePubs that will be seen on iPads running, ios5, ios6 and ios7.  Each version displays the page differently.  Is there a way to make the display consistent on all systems?

  • How to display all rows in the report in one page in Oracle APEX 3.2

    Friends -
    We are using Oracle Applications Express 3.2 on oracle database 10.2.0.5 on solaris environment.
    One of our report contains total no of rows 50000. when we ran report by default it is showing 15 and i can go search and change display no of rows to different numbers and click go.
    My question is it possible to display all 50000 rows during first time report launching without going to change rows. Is there any option that we can set how many number of rows that we can display during report design.
    Please advise
    VSH

    Hello VSH,
    >> My question is it possible to display all 50000 rows during first time report launching without going to change rows
    As vee pointed out it is possible, however the question you need to ask yourself is is it wise?
    Bear in mind that displaying 50,000 rows on a single HTML page means a lot of code that must be loaded by the client browser all at once. What it will do to your page loading time? Browser memory? Network bandwidth? Also, do you really believe that it is effective to let an end user look for a specific row among 50,000 rows?
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Safari 4.0.4 Displays All  PDF's as Black Pages

    When using *Safari 4.0.4* all PDF's are displayed as a dark black page. I have loaded dozens of pages from different sites with the exact same results. If I use Firefox or Camino the PDFs load and display correctly.
    I spent over an hour on the phone with an Apple Expert without resolving the problem. We uninstalled and reinstalled Safari, and the Adobe Reader. No Joy.
    The last act of desperation was a full reinstall of Snow Leopard. Again, no Joy.
    All my software is up to date.
    I have also loaded several 3rd party PDF readers and they have all displayed the pages correctly.

    Tom:
    I had a similar problem and the cause of it was that a 3rd party pdf reader replaced the default one and it was not compatible with 64-bit mode. If that is your issue, you can find out by opening Safari in 32-bit mode and see it a pdf will load. Alternatively, you can do what I ended up doing and uninstalling the 3rd party reader and using Safari in 64-bit mode.
    Hope that helps!
    sam

  • Displaying all the records in a tabular form on a single page

    Hello,
    After setting up a data entry page, I have hit an unexpected problem.
    The logic in my page requires that all the records in my tabular form should be displayed .
    The tabular form is based on a collection, and the user selects rows through a checkbox.
    Any reload of the page due to pagination will break the logic, as some calculation and display events occur during page load,
    based on the previous page.
    I need to display about 25 rows.
    I have changed the report attribute to display 50 rows, but it displays rows only up to the bottom of the screen,
    i.e. 11 rows.
    Unfortunately I only just added some new rows and saw this behaviour else I would not have gone that way,
    as I expected APEX to display all rows if required.
    Some help will be much appreciated.
    Regards
    Leckraj

    leckj wrote:
    Hello,
    After setting up a data entry page, I have hit an unexpected problem.
    The logic in my page requires that all the records in my tabular form should be displayed .
    The tabular form is based on a collection, and the user selects rows through a checkbox.
    Any reload of the page due to pagination will break the logic, as some calculation and display events occur during page load,
    based on the previous page.
    I need to display about 25 rows.
    I have changed the report attribute to display 50 rows, but it displays rows only up to the bottom of the screen,
    i.e. 11 rows.
    Unfortunately I only just added some new rows and saw this behaviour else I would not have gone that way,
    as I expected APEX to display all rows if required.Pagination settings are cached for the duration of the session. For this change to be instantly visible, either log out, restart the brower, and log in again, or manually re-request the page from the browser address bar, adding 'RP' in the ClearCache position in the URL.

  • Cross tab column headers display on all pages

    I made a Crystal Report with a cross tab which displays all details. In the cross tab I have 6 columns with details about the data displayed in the last 2 columns. The headers of these columns are only displayed on the first page but not on other pages. How can I add column headers to all pages? Thank you.

    Column headings should be repeated automatically, row headings can be repeated by
    1.right-clicking on the row header
    2. select Row options
    3. .select Repeat Labels on Page break
    or, when I just reviewed it in the help section it says:
    "When you create a Cross-Tab that is wider or longer than the specified page size, the program automatically spans the printing across enough pages to accommodate the size of the Cross-Tab. In the Preview tab, a line will appear at each page break. For ease in reading, column headings will be repeated on subsequent pages. Row headings can also be repeated using the Keep Columns Together option.
    To repeat row labels
    Right-click the blank top-left area of the Cross-Tab and select Cross-Tab Expert from the shortcut menu.
    The Cross-Tab Expert appears.
    Click the Customize Style tab.
    Select the Repeat Row Labels check box, if desired.
    Crystal Reports lets you designate report objects that don't expand horizontally, such as text objects, field objects, OLE objects, charts, maps, lines, boxes, and so on, to be repeated on each additional horizontal page that a Cross-Tab creates. For more information, see Repeating report objects on horizontal pages."

  • To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier. How do i get rid of this message? or do i need to just drop firefox all together?

    To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier. How do i get rid of this? it keeps pop n up and screw n up my stuff... if there is not a fix I will be dropping fox and going back to internet explorer.. this is not worth the headache!

    Are you getting that anytime you visit a page? Or after you hit the 'refresh', 'back' or 'forward' button?
    This error is not usually an error telling you that anything is broken, it's warning you that you are re-doing something you have already done. The page that you are trying to re-access, or refresh was a page that was doing something. Maybe you told the page to search for something, or you were filling out a form, or perhaps doing something like adding something to a shopping cart. Firefox warns you in case it's something you really don't want to do again; for example, accidentally buying a second toaster, or re-sending a comment form.
    If you only were searching or navigating around a page, it's generally ok to press the 'Resend' button.
    This safety feature is not unique to firefox, I can't offhand think of a browser that doesn't have it (though the wording may vary).
    However, if you are getting it constantly, every page you visit, on every website, all the time, then it's a bug.

  • My browser displays text only with very little page formating for all pages. How do I enable page formating with images etc.?

    I have a multi-user windows based machine where both users have the same browser, search engine, plugins, applications, etc. I use this machine primarily as an entertainment system (ie. TV client/server using a TV Tuner card, Music & Video Player, etc.). Most of my time on this machine is maintaining security and drivers. However, my wife uses it primarily as a social media communication device. My user account on this machine displays all content correctly. Where as she has crashed both Facebook games while playing as well as her mail (GMail). After one of these crashes it "appears" she is displaying HTML text with formatting but without images. I've tried to fix this without success. We have another machine that seems fine so it's not her login on our network, just the one machine. Please help!!!

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for