Can the Cover Page be the Initial View?

Hi everyone. A student of mine has an excellent question--how can you make sure that the Cover Sheet of a PDF package is the first thing the user sees? I just naturally assumed it would be, but it turns out that it's not.
Is it something you can set in the Initial View and if yes, how?
thanks!

Eva,
I don't work with packages, but you should be able to set the opening page in the Initial View properties (acc. to Acrobat user guide). This typically defaults to page 1 (as defined by the Acrobat window), but in some pre-8 versions of Acrobat, working w/Word files, I recall that the setting would be sometimes change to another page (without human intervention - a bug for sure). That was working with PDF files, not packages, but perhaps the same issue exists.
For a package, can't you select File > Properties, then in Doc. Properties dialog box, aren't there Initial View options? If so, under Layout and Magnification, don't you find the Open to Page option?
If this isn't the case, others who work w/packages will need to chime in. Make sure you specify which version/type of Acrobat you have and which operating system. --GMc

Similar Messages

  • How do i get a folio to default to the cover page when the app is closed and reopened.

    The folio i'm making is for a 'show and tell' sort of thing, it needs to be quite linear so has top start from the cover every time it's opened and then be read through. I know it's as easy as just using nav to return to cover but the people i'm making this for have 0 knowledge and 0 willingness to learn therefore i'd like the folio to reset to the cover page whenever the content viewer is closed and reopened.
    I had it working on a previous iteration but on my latest version it remembers what page i'm on when I reopen the viewer (logical and handy I know but not in this instance).
    Any help would be greatly appreciated.

    There is no way to do this automatically.
    Neil

  • IIwas viewing a photo book in slideshow mode and it froze so all I can see is the cover page of the book.  I let the battery die down but when I powred up...there it is again the first page. F3 allows me to see pictures of a few other screens

    i photo, I was viewing a book in slideshow mode and it froze on the cover page. I let the computer battery die out but when I powered up again the screen is frozen on the 1st page of the book.  if I F3 it allows me to see a few other screens but if I click on them I am back to the frozen cover page again.

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • In keynote - Leather Book theme - is there a way to remove the artwork in the middle of the cover page (between the two text boxes) (the squiggly thing)??

    I am trying to create a poster - in Keynote - transferring it to PDF then to JPEG so I can print it - and while I like the background in this Keynote theme (leather book) I can't seem to remove the artwork that is positioned between the two text boxes. Does anyone know how??? Can it even be done?

    I somehow ended up on creating a new master slide. I can FINALLY access the artwork - it has a box around it of x's - but I can't seem to do anything. Delete doesn't work. Trying to shrink the box doesn't work. I'm not getting a dialog box when I click on it that is specific to the x'ed area. It pertains to the full background page. I'm obviously missing something - the fact that I have never been in Keynote before may have something to do with it! :-)

  • Problem with the cover page of the fax output...

    Hi,
    I used SO_DOCUMENT_SEND_API1 to send the sapscript thru fax...
    I need to have the subject of the fax with values coming from the internal table...
    However, my knowledge is that the subject of the fax is part of the document_data importing parameter of the FM...
    Now the subject of output only shows the latest entry from the internal table and not every entry...
    Thanks a lot!
          Clear x_document_data.
          loop at i_document_data into x_document_data
                WHERE obj_descr is NOT INITIAL.
          endloop.
        CLEAR i_objpack-transf_bin.
    Pack to main body.
         i_objpack-doc_type   = c_raw.  "'RAW'.
        APPEND i_objpack.
    Pack to PDF.
        i_objpack-transf_bin = c_x.
        i_objpack-body_start = 1.
        i_objpack-body_num   = v_righe_attachment.
        i_objpack-doc_type   = c_pdf.    "'PDF'
        i_objpack-obj_name   = c_test.   "'TEST'
        i_objpack-doc_size   = v_righe_attachment * 255.
        APPEND i_objpack.
        CLEAR i_reclist.
    *For fax receivers.
        v_fax_recipient-rec_fax   = v_fax_number.
        v_fax_recipient-rec_state = v_country.
        ASSIGN v_fax_recipient TO <fs_receiver> CASTING.
        i_reclist-receiver = <fs_receiver>.
        i_reclist-com_type    = c_fax. "'FAX'
        i_reclist-rec_type    = c_f.    "'Fax'
        APPEND i_reclist.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = x_document_data
            commit_work                = c_x
          IMPORTING
            sent_to_all                = v_sent_all
          TABLES
            packing_list               = i_objpack
            contents_bin               = i_objbin
            receivers                  = i_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.

    Hi Jotsaroop,
    Its standard code. I didn't write any code here.
    DATA: current TYPE REF TO if_bol_bo_property_access.
         DATA: dref    TYPE REF TO data.
         value =
    'value not bound'."#EC NOTEXT
         if iterator is bound.
           current = iterator->get_current( ).
         else.
           current = collection_wrapper->get_current( ).
         endif.
       TRY.
         TRY.
             dref = current->get_property( 'SP_PHNO' ). "#EC NOTEXT
           CATCH cx_crm_cic_parameter_error.
         ENDTRY.
         CATCH cx_sy_ref_is_initial cx_sy_move_cast_error
               cx_crm_genil_model_error.
           RETURN.
       ENDTRY.
         IF dref IS NOT BOUND.
           value = 'CUST/SP_PHNO not bound'."#EC NOTEXT
           RETURN.
         ENDIF.
         TRY.
             value = if_bsp_model_util~convert_to_string( data_ref = dref
                                         attribute_path = attribute_path ).
           CATCH cx_bsp_conv_illegal_ref.
             FIELD-SYMBOLS: <l_data> type DATA.
             assign dref->* to <l_data>.
    *       please implement here some BO specific handler coding
    *       conversion of currency/quantity field failed caused by missing
    *       unit relation
    *       Coding sample:
    *       provide currency, decimals, and reference type
    *       value = cl_bsp_utility=>make_string(
    *                          value = <l_data>
    *                          reference_value = c_currency
    *                          num_decimals = decimals
    *                          reference_type = reference_type
               value = '-CURR/QUANT REF DATA MISSING-'.
           CATCH cx_root.
             value = '-CONVERSION FAILED-'.                  "#EC NOTEXT
         ENDTRY.

  • Is it possible to ignore the cover page of a document when viewing two pages at a time.

    when viewing a document with two pages up at a time, I want to ignore the very first page/cover page in the document so that all subsequent pages line up correctly. I can't find how to do this, is it possible. I cannot extract or delete the first page b/c the document is protected. I don't want to modify the document in any way. This document is a catalog that has information spread across two pages. So, when the cover page is included in the two page scroll viewing option, all the corresponding pages are offset by one page. I want the cover page to be at the top, by itself and the rest of the pages to show side by side.

    Show - Page Display - tick Show Cover Page in Two Page View.
    On Fri, Aug 15, 2014 at 4:55 PM, lost in acrobat <[email protected]>

  • How can I remove the page number from the first page of the document that is the cover page?

    How can I remove the page number from the first page of the document that is the cover page?

    If you open the Pages panel, (Window>Pages) you will see thumbnails of your master pages and your document pages. In new documents, there is usually a master called A-Master and one called None. If you drag the thumbnail of the None master onto the thumbnail of a document page, it will apply that master to that page. Presumably, you have made your page numbers on A-Master, so this will usually do the trick. If you have elements on A-Master that you need on the first page, but just not the page number, you can duplicate A-Master (which, by default will give you B-Master, but you can change the names if you like) and remove the page number on the duplicate and apply that to the document page.
    It might also be worth noting that you can apply master pages in the fly-out of the Pages panel. Go to the fly-out triangle and go down to Apply Master to Pages…, then select a master to apply and the range of pages (1-8 will give you all 8, 1, 3, 5, 7 will be the odds, 1-3, 4, 6-8 if you want continuous ranges and individual pages).

  • I am trying to copy and paste a story from a blog.  I can only view the first page on the Pages app.  How do I see the rest of the pages?

    I am trying to copy and paste a story from a blog.  I can only view the first page on the Pages app.  How do I see the rest of the pages?

    Thank you.  That helped in the first step.  I was able to copy text onto multiple pages.
    Now I can't get the pictures to copy.  How do I get my pictures to copy?
    Also once the blog page is on pages, how do i make changes to it?
    This my story and the page I am trying to copy.
    http://www.city-data.com/forum/tennessee/359683-going-off-grid-east-tennessee.ht ml
    Thanks so much
    Lisa(writing) and Mike trying to get it right.

  • How to create multiple cover pages following the text

    Hello everyone,
    I have a such difficult problem on pages : I would like to create multiple cover pages, and I want these pages to follow the text. I will to explain this a little better.
    I have to write a really long report. I need to divide it in some "sections" (I'm not sure that's the same meaning that in the software) and each section would start by a kind of cover page with a fullpage photo and a title in textbox. Let's see it with a capture :
    My problem is that I would like this page to follow the text. Because on the previous page, I have a table of contents which is evolving and taking more and pages each time. And the problem is that my "cover page" isnot moving to stay after the table of contents, it's the table which is continuing after it. So I have a first part before the cover page and a second part after the cover page. I would like all the text to stay before.
    Thank you in advance for any replies
    Evan Peuvergne, Hetic

    Use anchored images at the beginning of each section.
    You will need to initially make it smaller so you can position the image and the TextBox (make this second so it is higher in the stack) set a page break, then enlarge the image and Textbox to suit.
    If they are anchored (Move with Text) they will maintain ther position in the document.
    Turn off Text wrap on both your image and the Title. Insert a Page Break after the Title Textbox anchor on the page to move the following text to the next page of the section.
    Peter

  • How can I disable the previous button in the first page and the next button in the last page?

    Hi all,
    I have created a new skin for a webhelp by modifying the layout and the buttons. However, I am not able to find a way where in we can
    disable the previous button ini the first page of the webhelp and hte the next page in the last page of the webhelp. If both the next and previous button is visibile in the first and last page, it is sort of misguiding the user.
    I am using Robohelp 9.
    Please advice.
    Thanks,
    Parag

    I think you are mixing Previous and Next in a browse sequence and the Previous and Next that you get in the browser itself.
    In a browse sequence, they are automatically disabled at the start and finish. When in the first topic in the sequence only Next will be enabled, when in the last topic only previous will be enabled.
    Previous and Next in the browser are working on the topics your user has viewed which is not the same thing.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Thank You. This helps me alot to get into the masters and to see events and photos in a utilitarian way, but it is not as easy as viewing the normal iphoto format to find photos.  Can I do something else or did I not do something right to not see normal iphoto in Time Machine ?

  • How to hide the cover page when printing ?

    Dear all,
    I would like to change printings option for the report S_ALR_87013611.
    I would like to hide the cover page (with parameter) when printing.
    How can I do that ?
    Thanks for your help
    Best regards

    Hi,
    Do you mean the part of the report, which contains the report name, selection date, controlling area,
    Fiscal year, and other selection data?
    If yes, then you could proceed as follows: As the 1SIP-001 (S_ALR_87013611) is a standard report, please copy this report with name in the customer naming range and then delete the title page from the copied report as follows:
    1.  Call GRR2, in the library 1VK place the cursor on report 1SIP-001 and click on the icon 'Copy'
    2.  In the 'To report' field enter (for example) ZSIP-001 and press  'Enter'
    3.  Now double-click on ZSIP-001 to enter the report definition.
    4.  Under 'Extras' -> 'Report texts' -> 'Title page' call the title page.
    5.  Choose 'Text' -> 'Delete' and the title page lines are removed.
    6.  Click on the 'Save' icon to save this.
    7.  Assign the report to a new report group by choosing 'Environment'
       -> 'Assign report group' from the menu and enter ZSIP in the popup,
       confirming the next popup that the report group should be created.
    Now call txn GR55 and execute report group ZSIP with your selection
    criteria and follow the steps to print the report:
    - click 'printer icon' - mouseover text 'Print (ctrl+P)'
    - click OK with dot in 'current report'
    - click OK with dot in 'Print formatted report (page length 59)
    - on print parameter screen in menu, blank the 'SAP cover page' field.
    Regards,
    Greta

  • HT201263 When my ipod touch is in recovery mode, when i try to restore it, the itunes page says the website has timed out so it won't recover. Can anyone please help me?

    When my ipod touch is in recovery mode (when I try to re-store it) the itunes page sayes the website has been timed out and so it won't re-store. There is a limited time, whilst restoring the ipod, it lasts for approx 5 mins, then asks to start again all over again. Can anyone please help me?

    This device is not eligible for the requested build (Also sometimes displayed as an "error 3194")
    Update to the latest version of iTunes. Mac OS X 10.5.8 (Leopard) users may need to download iTunes 10.6.3.
    Third-party security software or router security settings can also cause this issue. To resolve this, followTroubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to performunauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. Uninstall the unauthorized modification software from the computer.
    Edit out the "gs.apple.com" redirect from your hosts file, and then restart the computer for the host file changes to take affect. For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart.
    Avoid using an older or modified .ipsw file. Try moving the current .ipsw file (see Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations), or try restoring in a new user to ensure that iTunes downloads a new .ipsw.

  • Why can't I access the featured page on the App Store anymore?

    Since a while, I can not access the main page of the App Store anymore.
    Every time I tried to it just stays blank showing "iTunes Store" on top, sometimes with a notification popping up that there was an error and the request could not be completed or something like that.
    Did this happen to anyone here, too? Is there any way that I could solve this?
    I tried quitting the app in the multitasking bar, I tried to reset the iPad 2, I tried to just turn it off and back on, nothing changed anything about the problem.
    I don't want to take the risk of losing data and I certainly don't trust iCloud with the backups and restoring.

    Hi,
    I have the same issues, at first I thought that it was the network I was connected to but then it turns out it just doesn't want to work. I have had my iPad 3 for a few months now and about a month ago it just stopped working :(
    I see no one responded to this question, is there anyone out there that can help? I don't wan to do a complete restore from backup if it is not necessary.
    Thanks,
    Sean

  • Pages 5.2 - When I try to reorder different pages it just takes all the pages within the document and turns them into a stack! Why is this happening and how can I oder pages as the update is meant to let me?

    When I try to reorder different pages it just takes all the pages within the document and turns them into a stack! Why is this happening and how can I oder pages as the update is meant to let me?
    Any Help?I know the update has only been out a while but if anyone has an idea why it is doing this, please let me know!

    But you are telling me something I already know.
    Be precise.
    It is not Pages '09 that is broken.
    I am back in Mavericks and testing Pages 5.2.
    There are improvements, we shall see how useful, but in less than a minute I have already discovered bugs.
    Peter

Maybe you are looking for

  • HOME SHARING PROBLEM

    Hi, I just bought an apple tv.  I have an IMAC running on 10.5.8 and i have Clear Wireless Rover puck (here is a link to specs:http://www.clear.com/support/download/clear-spots/rover-puck-by-clear). I currently have my wife and my IPHONE 3g, one IPAD

  • SAP WEB AS 6.20 unicode installation question

    I am trying to install SAP WEB AS 6.2 unicode version on SAPDB 7.3 on windows 2000 . I get the following error when i try to install the database instance after the succesfully installing the Central instance. INFO 2004-10-11 22:22:50 'C:\51018821/NT

  • There is a problem with using the new Hotmail attachment buttons with firefox 3.6.8

    I use firefox 3.6.8 browser and was unable to use the new attach file buttons in the newest version of hotmail. . I sent a help request to microsoft and got back a 'generic' answer that the new hotmail works with all browers; ie, safari, chrome and f

  • Problem in validator method

    Hi to all, i have this jsf code:           <h:outputText value="#{bundle.oldPassword}:" />           <h:inputSecret id="oldPassword" value="#{userManager.oldPassword}" required="true"></h:inputSecret>                     <t:message id="oldPasswordErr

  • HP LJ 3200 - prints garbage

    DL the latest driver from HP. Ran .pkg install, 'add'ed printer per instructions. It's connected via USB directly to my Mac Mini G4. It prints the following every time: %!PS-Adobe-3.0 %RBINumCopies: 1 %%Pages: (atend) %APLDSCEncoding: UTF8 and some m