Accordion closed upon initial view

Hello,
Is there any way to set the accordion spry to a {defaultpanel: -1} without having to set the {useFixedPanelHeights:false}?
I have an accordion with five panels and within each I have on average 150 lines of data. So I would like all panels closed upon the first view but also when a panel is clicked I would like the height set to 500px so the visitor won't have to scroll down the page.
Thanks for any assistance.
Chisler

It seems to be working kind of funky now though. In Chrome, FF, Opera and Safari it is seems as though the content opens prior to the panel moving up essential closing the panel above?
There is a lot of content that has to be loaded prior to the accordion engine starts up. The best way is to hide the content and unhide it once the page has been loaded.
To do this
1. add <script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script> to the document HEAD section
2. add #Accordion1 {visibility: hidden;} to your document HEAD section
3. add <script>Spry.$$("div#Accordion1").setStyle("visibility: visible;");</script> to your document near </body> tag at the bottom
This also moves the footer on the page down and everything raising up into place from there.
Encapsulate the accordion in a div which has a height (about 600px) to keep the footer where it is supposed to be
Also in IE8 (not sure about other versions of IE) each panel when clicked open with a large blank space between the panel header and the content until you click on the content, then it jumps to the position it should be in.
Remove
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
and insert
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
Gramps

Similar Messages

  • Oam elements not loading upon initial viewing

    I'm making a fun little intracompany website here: http://start-pacific.appspot.com.
    I designed it in Muse, using buttons from Edge Animate.
    When the page loads the first time after a completely clear cache, (a seemingly random) two or three buttons on the top will stay stuck at the preloader "down" stage, and will stay like that until the user refreshes the page. I don't want my users to have to figure out that they need to refresh the page to do this. Is there some page attribute I can enable to force the buttons to finish loading?
    I put the .oam files on the page with the File> Place function.

    Ok, so I have some developments. When the page loads, a successfully loaded element will look like the following in the HTML of Firebug:
    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <meta content="IE=Edge" http-equiv="X-UA-Compatible">
    <title>Untitled</title>
    <script src="edge_includes/jquery-1.7.1.min.js">
    <script src="edge_includes/edge.2.0.0.min.js">
    <script src="GmailAnimated_edge.js">
    <script src="GmailAnimated_edgeActions.js">
    <script src="GmailAnimated_edgePreload.js" charset="utf-8" type="text/javascript">
    <style>
    </head>
    And here's what the unsuccessfully loaded code looks like:
    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <meta content="IE=Edge" http-equiv="X-UA-Compatible">
    <title>Untitled</title>
    <script src="edge_includes/jquery-1.7.1.min.js">
    <script src="directoryAnimated_edgePreload.js" charset="utf-8" type="text/javascript">
    <style>
    </head>
    They are configured the exact same way (except one is named "directoryAnimated" and one is named "gmailAnimated"). You'll notice that the second item just doesn't load a few lines of code, breaking the element.
    Why is the site not loading all the code upon the initial visit?

  • Is there any way to force the following initial view...

    ..."fit to page" + "two pages per screen - but only if there's room for two"?
    In other words, I want the page to fit in the screen upon initial view, but I also see a lot of wasted real estate all around that could, most of the time, fit a second page. However, I don't want the two pages to count against the "fit" -- meaning, on narrower screens, the priority should go to fitting the first page (and not showing the 2nd) rather than fit both pages at all costs.
    Is there any way to ask Acrobat to do this?

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Initial View

    Hello Everybody,
    I'm having a little problem with the initial view.  Upon opening, my converted PDF document (Smart Draw) continues to open in Portrait instead of Landscape.  Ive created the original document in landscape before I converted to PDF.  I've tried various settings in Acrobat > File > Properties > Initial View...no luck, it keeps opening in portrait instead of landscape...any ideas.

    Document>Rotate Pages and then Save As

  • ADF BC: Creating updatable VO based upon DB View with "instead of" trigger

    Hello all,
    I have got an interesting issue. I have an Oracle DB view that is used to hide some complexity in the underlying DB design (it does some unions). This view is updatable because we have created an "instead of" update trigger to update the correct table when a row is updated. This is working fine in SQL.
    Next, we have created an ADF Entity object based upon the view, specifying an appropriate PK for the DB View. Then, we have created an updatable VO based upon the EO. All well and good so far. The issue we have is in trying to commit changes to the DB - because the ADF BC framework is trying to lock the row to update (using SELECT ... FOR UPDATE), it's not working because of ORA-02014 - cannot select FOR UPDATE from view with DISTINCT, GROUP BY, etc.
    This leads me to thinking about overridding doSelect() on the EO as hinted here http://radio.weblogs.com/0118231/stories/2005/07/28/differenceBetweenViewObjectSelectAndEntityDoselectMethod.html
    As a temporary test, we have over-ridden the EO's doSelect to call super.doSelect(false) and it does work, although we will have lost update issues as detailed in Steve's article.
    My questions:
    1). Is overriding doSelect() the correct thing here? Perhaps there is a better way of handling this problem? I do have a base EO class from which all of the EO's extend, so adding this behavior should be straightforward.
    2). Does anyone have example doSelect implementation? I am thinking of overriding doSelect for my EO and calling super.doSelect (lock=false), but then I need to deal with some possible exceptions, no?
    Kind regards,
    John

    Hi John,
    I have exactly the same issue as you experienced back in January. I have a complex data modelling requirement which requires the need to pivot rows into columns using ROW_NUMBER() and PARTITION clauses. To hide the complexity from the middle tier, I have created a database view and appropriate INSTEAD OF triggers and mapped my EO to the view. I have overriden the lock() method on the EO implementation class (to avoid ORA-02014) and would like to try the same solution you used with the pl/sql call to lock the record.
    My question is, how did you manage the release of the lock if the transaction was not rolled back or committed by your application i.e. if the user closed the browser for instance.
    In my naivity, I would like to think that the BC4J framework would release any locks for the database session when it found the servlet session to be terminated however my concern is that the lock would persist and cause complications.
    Any assistance greatly appreciated (if you would be willing to supply your lock() method and pl/sql procedure logic I would be even more grateful!).
    Many thanks,
    Dave
    London

  • Initial View + Viewing Through the Plugin is Inconsistent

    We have a set of PDF's that are all set with an initial magnification of 'Fit to Page / Single Page'.
    When browsing between documents in firefox + acroread plugin via links/bookmarks embedded within, the plugin will ocassionally change to an initial magnification of '125%'.  It does seem like it's more likely to happen if you use the bookmarks the swap between documents as opposed to links in the document text.  We've also tried setting the the initial view in the reader's preferences, however this seems to have little/no effect.  We can't seem to reproduce this if we read the pdf in an actual acroread instance, as opposed to the plugin.
    We have tried various versions of Adobe in the production of the pdf's to verify it doesn't have anything to do with what is produced.  We have yet to try Adobe Acrobat Reader 9.1 to see if this has been corrected in later versions.

    Hi JasonMock,
    Fit Page layout adjusts the magnification level so that one page fills the document pane vertically. Therefore, the magnification level can be any value depending on a number of factors like the browser window size, any navigation panel is opened/closed etc. At any moment, Reader will try to fit the page in the document pane. So if PDFs are to be opened at a particular zoom level then try setting that magnification level (say 100%) in the File > Document Properties>Initial View settings from Acrobat.
    You can also try changing the size of the standalone acroread window to see the change in the magnification value in the Fit Page layout.
    Thanks,
    Swati

  • Initial View of a PDF

    Is there any way to have more than one panel display in the initial view of a pdf? Say, to show the bookmarks and attachments upon opening the pdf?

    For something that is not in the selection menu you will likely have to get by using JavaScript. You might want to go through the JavaScript manual and see if it helps. Keep in mind that many are turning off JavaScript for the same reason as with browsers -- the source of viruses. Might be worth a try. As far as I know there is no default that you could check otherwise.

  • Interaction Between Initial View Magnification & Bookmark Destination

    I'm using Adobe Acrobat X.
    I understand that setting the destination of a bookmark also establishes the view magnification. Apparently, this is always the case, and that doesn't seem right to me.
    Suppose all I want is for each bookmark to take the reader to a particular page, and I don't want the view magnification to be any different from the magnification that the reader is currently using. For example, suppose I've set Initial View, Magnification to Default when creating the PDF. How do I make sure the reader isn't going to get confronted with a different view magnification upon clicking on a bookmark and being taken to the page?

    Here are four screenshots showing what Bookmark Properties shows:

  • WD -SALV- setting initial view

    Hi everyone,
    I saw some forums in SDN about setting the initial View in a SALV.
    Someone suggested to use R_COMPONENT of type IF_SALV_WD_COMP_TABLE_PERS in order to call the method SET_STANDARD_VIEW.
    But noone was able to indicate how r_component could be properly referenced. (Such Forums are anyhow marked as closed but unanswered).
    I would be very pleased to know if someone managed to do it, and how.
    Thank you so much.
    Best Regards,
    Christian

    Hi,
    Please refer to this code and make changes accordingly as per the conditions -
    METHOD wddoinit.
      DATA:
        lo_nd_mara                 TYPE REF TO if_wd_context_node,
        lt_mara                    TYPE        wd_this->elements_mara,
        lo_cmp_usage               TYPE REF TO if_wd_component_usage,
        lo_interfacecontroller     TYPE REF TO iwci_salv_wd_table ,
        lo_api_interfacecontroller TYPE REF TO if_wd_controller,
        lo_pers                    TYPE REF TO if_wd_personalization,
        lv_value                   TYPE REF TO cl_salv_wd_config_table,
        lt_var                     TYPE        wdr_pers_variants,
        wa_var                     TYPE        wdr_pers_variant,
        ls_config_key              TYPE        wdy_config_key.
    * navigate from <CONTEXT> to <MARA> via lead selection
      lo_nd_mara = wd_context->get_child_node( name = wd_this->wdctx_mara ).
    * Get material master data
      SELECT * FROM mara INTO TABLE lt_mara UP TO 10 ROWS.
    * @TODO handle non existant child
      IF lo_nd_mara IS NOT INITIAL.
        lo_nd_mara->bind_table( new_items = lt_mara set_initial_elements = abap_false ).
      ENDIF.
    * Instantiate ALV
      lo_cmp_usage =   wd_this->wd_cpuse_alv_materials( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
    * Get the interface controller of the component usage
      lo_interfacecontroller =   wd_this->wd_cpifc_alv_materials( ).
    * Get the model object of ALV
      IF lo_interfacecontroller IS NOT INITIAL.
        lv_value = lo_interfacecontroller->get_model(
    * Get the API reference
        lo_api_interfacecontroller = lo_interfacecontroller->wd_get_api( ).
      ENDIF.
    * Get personalization obect
      IF lo_api_interfacecontroller IS NOT INITIAL.
        CALL METHOD lo_api_interfacecontroller->get_personalization_manager
          RECEIVING
            pers_manager = lo_pers.
      ENDIF.
    * Get variants
      IF lo_pers IS NOT INITIAL.
        CALL METHOD lo_pers->get_variants
          RECEIVING
            variants = lt_var.
      ENDIF.
    * Set the default variant
    * Required variant is read
    * READ statement can be modified as per the requirement.
    * As this application holds only one user variant, first record is read.
    ##read the respective records based on your condition
      IF lt_var IS NOT INITIAL.
        READ TABLE lt_var INTO wa_var INDEX 1.
        IF sy-subrc EQ 0.
          ls_config_key-config_id    = wa_var-config_id .
          ls_config_key-config_type  = wa_var-config_type.
          ls_config_key-config_var   = wa_var-config_var.
        ENDIF.
        TRY.
            CALL METHOD lo_pers->set_default_variant
              EXPORTING
                config_key = ls_config_key
                set        = abap_true.
          CATCH cx_wd_personalization .
        ENDTRY.
    * Get the variant information based on variant id
    * Load the variant/ Set the default variant
        CALL METHOD lo_pers->load_config_by_key
          EXPORTING
            config_key            = ls_config_key
            fetch_default_variant = abap_true.
      ENDIF.
    ENDMETHOD.
    Regards,
    Lekha.

  • 9.1 Pro Update Busted Initial View Magnification

    I've just tonight updated to 9.1, and now I cannot set my PDF initial view settings to "actual size" or "100%". Well, I CAN set it, but the setting doesn't hold after saving, closing and reopening the file. The file opens at 100% in Reader 8 (haven't tried other versions), but in Pro it fits, or scales rather, "visible" (to my humongous window).
    I always do this for my PDFs so people don't misjudge scale or final size (well, too much anyway). And it worked just last night perfectly before the update. Rats.
    I dunno about the rest of you, but I think a PDF should always open at 100%. Maybe that's just me.
    Any ideas?

    Ah, the update reset my custom page display resolution preferences! Problem solved.

  • Closing the Report Viewer causes the application to hang

    Hi,
    Since a few days we are experiencing some problems with the Crystal Reports viewer. When closing a report viewer in our application, the application hangs for a few minutes. The strange thing is, that it only seems to happen on Windows 7 and Windows 2008 R2 Server.
    Our application with the integrated Crystal Report Viewer is running on 2 application servers :
    - Windows 2008 Server, versie 6.0 Build 6002, Service Pack 2
    - Windows 2008 R2 Server versie 6.1, Build 7600
    Crystal Reports version installed on both servers : 12.01.0007.1144
    On the 2008 Server, the application works correctly.
    On the 2008 R2 server, the application hangs for about 5 minutes while closing the report preview window.
    Both server have exactly the same version of Crystal Reports and the same application version.
    I'm having the same issue on a Windows 7 x64 (6.1 Build 7600).
    I've installed all updates and hotfixes up to SP3 Fix Pack (12.3.3.812 / 12.3.2003.812) but I'm still having the same problem.
    We didn't have this problem until a few days ago, so I assume it has something to do with a windows update which only affects Windows 7 and Windows 2008 R2.
    Please advice us with a possible workaround, because our application is distributed to a few thousand users ...
    Some more debug info :
    This is the call of from the main thread when the application hangs :
         [Managed to Native Transition]     
    >     mscorlib.dll!System.__ComObject.ReleaseSelf() + 0x5 bytes     
         mscorlib.dll!System.Runtime.InteropServices.Marshal.ReleaseComObject(object o) + 0x8b bytes     
         CrystalDecisions.Shared.dll!CrystalDecisions.Shared.SharedUtils.ReleaseComObject(object obj = {CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass}) + 0x75 bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.ReportAppServer.ISCDClientDocumentEvents_EventProvider.Dispose(bool bDisposeManaged = true) + 0x1a2 bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.ReportAppServer.ISCDClientDocumentEvents_EventProvider.Dispose() + 0x32 bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.DisconnectEventRelay() + 0xfc bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.InternalClose(bool bSetupForNextReport = false, bool bAutoClose = true) + 0x10e bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Dispose(bool bDisposeManaged = true) + 0xad bytes     
         System.dll!System.ComponentModel.Component.Dispose() + 0x12 bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.CrystalReports.Engine.ReportDocument.ClearCache(bool clearDocument = true) + 0x9d bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.CrystalReports.Engine.ReportDocument.InternalClose(bool bSetupForNextReport = true) + 0x81 bytes     
         CrystalDecisions.CrystalReports.Engine.dll!CrystalDecisions.CrystalReports.Engine.ReportDocument.Close() + 0x3f bytes     
         SyDelSoftControlLibCrystalReports.dll!SyDelSoft.ControlLib.CrystalReports.cReportForm.Dispose(bool disposing = true) + 0x55 bytes     
         SDProjects.exe!SDProjects.GUI.ReportForm.Dispose(bool disposing) + 0x38 bytes     
    SharedUtils.ReleaseComObject
    Kind regards,
    Frederic Hoornaert

    CrystalReportsDisposeIssue.crpe.Diagnostics.0.log
    --> Form3 closed
    ..\..\src\print\datasource\datasrc2.cpp:535,Releasing subreport data sources,Start Time,"17:39:17"
    N/A:-1,Releasing subreport data sources,Elapsed Time,"1"
    ..\..\src\crpe\crpe.cpp:791,Closing engine,Start Time,"17:39:17"
    ..\..\src\crpe\crpe.cpp:833,Closing engine,Before close engine use count,"7"
    ..\..\src\crpe\crpe.cpp:858,Closing engine,After close engine use count,"6"
    N/A:-1,Closing engine,Elapsed Time,"2"
    ..\..\src\crpe\crpe.cpp:791,Closing engine,Start Time,"17:39:17"
    ..\..\src\crpe\crpe.cpp:833,Closing engine,Before close engine use count,"6"
    ..\..\src\crpe\crpe.cpp:858,Closing engine,After close engine use count,"5"
    N/A:-1,Closing engine,Elapsed Time,"2"
    --> Form2 closed
    ..\..\src\print\datasource\datasrc2.cpp:535,Releasing subreport data sources,Start Time,"17:39:52"
    N/A:-1,Releasing subreport data sources,Elapsed Time,"1"
    ..\..\src\crpe\crpe.cpp:791,Closing engine,Start Time,"17:39:52"
    ..\..\src\crpe\crpe.cpp:833,Closing engine,Before close engine use count,"4"
    ..\..\src\crpe\crpe.cpp:858,Closing engine,After close engine use count,"3"
    N/A:-1,Closing engine,Elapsed Time,"2"
    --> Form1 closed..\..\src\print\datasource\datasrc2.cpp:535,Releasing subreport data sources,Start Time,"17:40:29"
    N/A:-1,Releasing subreport data sources,Elapsed Time,"1"
    ..\..\src\crpe\crpe.cpp:791,Closing engine,Start Time,"17:40:29"
    ..\..\src\crpe\crpe.cpp:833,Closing engine,Before close engine use count,"2"
    ..\..\src\crpe\crpe.cpp:858,Closing engine,After close engine use count,"1"
    N/A:-1,Closing engine,Elapsed Time,"2"
    ..\..\src\crpe\crpe.cpp:791,Closing engine,Start Time,"17:40:29"
    ..\..\src\crpe\crpe.cpp:833,Closing engine,Before close engine use count,"1"
    ..\..\src\crpe\crpe.cpp:858,Closing engine,After close engine use count,"0"
    N/A:-1,Closing engine,Elapsed Time,"100017"
    CrystalReportsDisposeIssue.crpe.functions.0.log
    0xfb8     17:39:17.871          0     PESetUserSessionInfo               0     PEUserSessionInfoW:<StructSize:262><userName:><requestID:22>     IN          21     <==
    0xfb8     17:39:17.871     0     0     PESetUserSessionInfo               0     OUT     PEUserSessionInfoW:<StructSize:262><userName:><requestID:22>          21     <==
    0xfb8     17:39:17.874          3     PEClosePrintJob     report {657D0ECA-BC6A-4EC6-9476-02B77376E07C}.rpt          0     jobN:3     IN          22     <==
    0xfb8     17:39:17.874     36     3     PEClosePrintJob     report {657D0ECA-BC6A-4EC6-9476-02B77376E07C}.rpt          0     OUT     jobN:3          22     <==
    0xfb8     17:39:17.913          0     PECloseEngine               0     void     IN          22     <==
    0xfb8     17:39:17.913     3     0     PECloseEngine               0     OUT     void          22     <==
    0xfb8     17:39:17.923          0     PECloseEngine               0     void     IN          0     <==
    0xfb8     17:39:17.923     3     0     PECloseEngine               0     OUT     void          0     <==
    0xfb8     17:39:52.421          0     PESetUserSessionInfo               0     PEUserSessionInfoW:<StructSize:262><userName:><requestID:23>     IN          0     <==
    0xfb8     17:39:52.421     0     0     PESetUserSessionInfo               1032     OUT     PEUserSessionInfoW:<StructSize:262><userName:><requestID:23>          0     <==
    0xfb8     17:39:52.423          1     PEClosePrintJob     report {F2574C5C-00BC-4627-9A05-B8133D6E6F7D}.rpt          0     jobN:1     IN          0     <==
    0xfb8     17:39:52.423     15     1     PEClosePrintJob     report {F2574C5C-00BC-4627-9A05-B8133D6E6F7D}.rpt          0     OUT     jobN:1          0     <==
    0xfb8     17:39:52.441          0     PECloseEngine               0     void     IN          0     <==
    0xfb8     17:39:52.441     3     0     PECloseEngine               1032     OUT     void          0     <==
    0xfb8     17:40:29.281          0     PESetUserSessionInfo               0     PEUserSessionInfoW:<StructSize:262><userName:><requestID:24>     IN          0     <==
    0xfb8     17:40:29.281     0     0     PESetUserSessionInfo               1032     OUT     PEUserSessionInfoW:<StructSize:262><userName:><requestID:24>          0     <==
    0xfb8     17:40:29.283          2     PEClosePrintJob     report {C78FE11F-6465-478F-83AB-49D8F0C6D64A}.rpt          0     jobN:2     IN          0     <==
    0xfb8     17:40:29.283     24     2     PEClosePrintJob     report {C78FE11F-6465-478F-83AB-49D8F0C6D64A}.rpt          0     OUT     jobN:2          0     <==
    0xfb8     17:40:29.310          0     PECloseEngine               0     void     IN          0     <==
    0xfb8     17:40:29.310     2     0     PECloseEngine               1032     OUT     void          0     <==
    0x1568     17:40:29.315          0     PECloseEngine               0     void     IN          0     <==
    0x1568     17:40:29.315     100018     0     PECloseEngine               0     OUT     void          0     <==

  • Is there a way to set the default Initial View to Bookmarks Panel and Page on word documents that I save as PDF?

    When I save my word 2013 documents as Adobe PDF I have to open the PDF up, go to File>Properties>Initial View>Navigation Tab and then set the initial view as Bookmark Panel and Page; it gets pretty tedious.
    I use Save as Adobe PDF rather than Print to Adobe PDF Printer because I like being able to have the security settings automatically set.
    I just want to be able to save my word document as Adobe PDF with the initial view already set as Bookmark Panel and Page, and with security, so I can send it out immediately.
    Is this possible?
    Thank you.

    Use the Firefox Android Addon - Phony
    *https://addons.mozilla.org/en-US/android/addon/phony
    for more
    *https://addons.mozilla.org/en-US/android/

  • Finder Cover Flow initial view

    How can I set the initial view settings when using cover flow within finder-
    the finder file/folder list at the bottom of the window is way too short and the cover flow file preview portion of the window is massive.
    Appreciate?

    For me, I find that when I resize the window, it stays that way. If it doesn't stick for you, try resizing, and then pressing Command-J to open View Preferences, check the Always Open in Cover View box at the top, and the Use as Defaults at the bottom. They're not directly related, but I've found that the helped.
    If those don't help, go to the folder ~/Library/Preferences (where ~ stands for you Home folder), and remove a couple of files:
    com.apple.finder.plist
    com.apple.systemuiserver.plist
    In the ByHost folder, there will be one or more com.apple.HIToolbox.randomjunkthatdoesn'tmatter.plist file; remove all of them.
    Log in/out, and see if that helps.

  • Initial View - Default Setup (Acrobat 9.0 Pro)

    Hi everyone,
    This may be a dumb question but I just can't seem to find how to change the default page number in the "Initial View" tab - under Document Properties.
    My pdfs are always opening up on page 4 (small thing - but annoying!).  I can change the value to "1" for each pdf, but I don't want to have to do this everytime i generate a pdf.
    There must be a way to change the default value from "4" to "1"  (I hope).
    Can anyone help with this?
    Thank you,
    Tina

    Never mind - I just found the option under "Save PDF" that allows me to select the page number.
    Just didn't expect it to be there ... sorry about that !
    tvb

  • Batch create multiple pdf's while using epilogue.ps for setting initial view and opening bookmarks

    Hi,
    I'm trying to batch create multiple pdf's from word files, and use the epilogue.ps file for setting the initial view and opening the bookmarks panel, but i keep getting no satisfying result.. i'm probably missing something fundamental.
    I've read some forum posts and adobe help posts explaining this, so i'm pretty sure this would be possible?
    Reference:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7f0f.w .html  see advanced panel options
    http://help.adobe.com/en_US/acrobat/using/WS58a04a822e3e50102bd615109794195ff-7f14.w.html
    System: Windows 7
    Acrobat: Acrobat X professional
    i've searched for and found a way to overwite the epilogue.ps file and have inserted the following:
    %  Insert your custom PostScript here...
    [ /PageMode /UseThumbs
    /Page 1 /View [/Fit ]
    /DOCVIEW pdfmark
    After that i checked my Adobe Acrobat preferences, and in the categorie 'Convert to Pdf' i selected 'Microsoft office word' in the select area 'Converting to pdf'.
    Clicked 'Edit settings' to allow creating a joboptions file (field: 'adobe pdf settings') which has the option 'Use epiloque.ps and prologue.ps' checked in the advanced section.
    So now i thought i would have everyting setup to create my pdf's, however, my view isn't changed to fit, nor are there any bookmarks or in this case thumbs (i used /useThumbs) visible.
    Did i miss something obvious? Is there a better way to test this? Any help would be appreciated!

    i like it about that ok in how to open my site

Maybe you are looking for

  • "Why Has The Video In My Timeline (and Canvas) Turned Green"

    I've been sailing along with editing a new video in FCE but tonight a strange glitch has occurred at the 23.09 point through the 23.57 point. The video footage goes to a green screen, although the audio is still registering. I tried deleting the clip

  • Number of characters in a line of ABAP WD textedit

    Hi guys, I want to fix the number of characters you can write into the textedit component of my abap web dynpro. The problem is, that when i set cols to 73 ( that the ammount of characters i want to allow in one line) and then set the wrapping mode t

  • Open a RAW file in CS6 sent from LR4

    I am running LR4 and CS6 on a PC, Windows 7 OS. I would like to send a raw file (CR2 or .ORF) from LR using the "Edit In" mode to CS6 and have it open in ACR, or be able to open it in ACR.  Is this possible, if so how? I have tried a number of approa

  • Verizon Site Text Problem.... Help!

    I'm a computer savvy person, but Verizon is driving me crazy!  This is one I can't figure out and I can't get a live person for one instance of help!!  This is my problem:  I have had a verizon site for years, using site builder.  I had pages and pag

  • Restoring Ipod Touch- Lose updated firmware?

    I updated the firmware on my ipod touch 1G to ver. 2.2 via Itunes, and now may have to do a "restore". Question: Will I have to re-download (and pay another $10) the software/OS update after the restore, or will Itunes remember that I just paid for t