Locking horizontal scroll in document panel

Is there a way to disable horizontal scrolling in the main document panel? When I'm doing edits, I want spreads in the document to always be in the same position as I move from spread to spread, and invariably as I scroll through, there will be significant horizontal shift. Neither resizing the panel to match the spread nor selecting 'Fit spread in window' do the trick.
Perry

I know. This is *extremely* annoying and I can't find any way of turning it off either. It wasn't like this prior to InDesign CC.

Similar Messages

  • Locked horizontal scrolling?

    How can i get locked horizontal scrolling?
    If i'm reading a LONG pdf a bit zoomed in, i  start getting tired of repositioning the text within the screen, and a locked horizontal scrolling mode would come in handy. How can i do this in adobe mobile on android (4.2.2)?
    If i can not, how can i submit my suggestion of this feature to adobe?

    Hi,
    Adobe Reader currently does not support locking of horizontal screen . You can submit your request  at the following url : https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Thanks for your suggestion.
    Adobe Reader Team

  • Expand horizontal scroll panel on both sides for a zoom in effect

    Hi,
    I'm creating an interactive timeline with Flash Catalyst. It is set up as a long horizontal scroll panel which contains buttons that link to states with photos and text about historic events. One feature I would like to include is a zoom feature, like the one found on the bbc British history timeline (http://www.bbc.co.uk/history/interactive/timelines/british/index_embed.shtml ). E.g., when you click on a colored section of the horizontal scroll panel it will zoom in to view that timeframe in more detail.
    The problem I'm running into is that I can't expand the scroll panel to the left. So, I can go into edit mode for the scrolling content, create a second state, and enlarge the scrolling content in that second state to create a zoom in effect. However, because the scrolling content will only expand to the right, I can't line up the interaction correctly.
    Is there a workaround for this in Flash Catalyst?

    have a peek at this:
    on the left, the corner radius (the red line) is enough to create a curve on the inside of the stroke. on the right, it isn't large enough.

  • Locking the first column in advanced data grid on horizontal scrolling

    Hi All,
    My requirement is to freeze or lock the first column in the advanceddatagrid from scrolling on horizontal scroll event.
    The column should always remain in the left hand side of the grid.
    I tried with lockedColumnCount property of the advanced grid. But it is not working.
    Could anyone help me please with code examples

    I am able to do the above by using the method which passes
    the sort information to data provider. But now the problem I am
    facing is I cannot use event.preventDefault(); along with that
    method. If I use event.preventDefault(); then it does not show the
    descending arrow on the column, nor does it sort on multiple
    columns.
    But if I do not use event.preventDefault(); then the problem
    I am getting is it remembers the previous sort order for a
    particular column. eg. If I sorted on col A (desc)+colB and now I
    sort on colC. Again if I click on col A, the data provider sorts on
    colA ascending shows it and then the grid refreshes sorting on col
    A but in descending order.
    Does somebody know how to get around this problem?

  • Set the horizontal scroll bar for the OOTb document library view

    hi all,
     Am facing an issue in my sp portal.We have designed and developed the portal with OOTB document library views for site columns also. Going to enable the doc lib view. but  we have some  35 columns in eeacha nd every document
    library within our sub site. But if an end user wants to see the last column then he needs to scroll. but, since  then my master page has fixed width, the top corner will be seen as blank. would like to know how can we set horizontal scrolling
    in this doc lib view .
    Das

    Hi,
    According to your description, my understanding is that you want to set the horizontal scroll bar for the document library when the last column postion exceed the fixed width.
    I suggest you can try to use Jquery to set the width attribute of the menu bar dynamically if the document library width exceeded. You can add the Jquery or CSS style using SharePoint Designer under the PlaceHolderMain tag of document
    library page. Also, you need to find the div id in your environment using Internet Explorer.
    More information:
    http://sharepointpromag.com/sharepoint-development/sharepoint-branding-101-branding-master-pages
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Start a horizontal scroll in the middle of a table?

    Hello,
    My demanding users are at it again. Although I am learning alot but lest I digress;-) Lets say I have a tableview with 72 columns that is one month for each year spanning over 6 years. No biggie but instead of the horizontal scroll starting at the left most point I would like start the scroll in the middle (say at column 36 or something) of the tableview. So if my tableview starts at 03/2002 in column 1 and goes to 03/2008 in column 72 I want the horizontal scroll to start at 03/2005(current month)in column 36 each time the table is rendered. I am using MVC and the tableview iterator(which I love).
    I was hopeing that I could find something similar to a dropdown i.e. pre-populate a selected value and the dropdown starts at that selection not the top most one. Any one have any ideas where I could begin? I have searched this forum for 'horizontal' and 'scrolling' but no hits.
    TIA,
    Rich

    Hello!
    I gave the example from Thomas Ritter to the JS person here and he got it working. I can't take credit but I wanted to share it with the forum. Basically what happens is that the horizontal scroll will scroll to the right till the date column that is close to the current date. I say close to because some of the columns are in months so if the current date is 21-MAR-05 then the horizontal scroll will scroll right until MAR-05. Either way here is the code. As I said before I take no credit for it. I do have another question though. Anyone have any ideas how to change it so that I can pass it a date and have it scroll there instead of the current date?
    <code>function lockCol(tblID) {
         var table = document.getElementById(tblID);     
         var cTR = table.getElementsByTagName('tr');  //collection of rows
         var coords = { x: 0, y: 0 };
         var now = new Date();
         var strMonthArray = new Array(12);
         strMonthArray[0] = "Jan";
         strMonthArray[1] = "Feb";
         strMonthArray[2] = "Mar";
         strMonthArray[3] = "Apr";
         strMonthArray[4] = "May";
         strMonthArray[5] = "Jun";
         strMonthArray[6] = "Jul";
         strMonthArray[7] = "Aug";
         strMonthArray[8] = "Sep";
         strMonthArray[9] = "Oct";
         strMonthArray[10] = "Nov";
         strMonthArray[11] = "Dec";
         strMonth = strMonthArray[now.getMonth()];
         year = new String(now.getYear());
         var today = now.getDate() + "-" + strMonth + "-" + year.substr(2,2);
         if (table.rows[0].cells[0].className == '') {
              for (i = 1; i < cTR.length; i++) {
                   var tr = cTR.item(i);
                   if(i == 1){
                        tr.cells[0].className = 'firstLocked';
                        innerloop:
                        for (j = 2; j < 100 ; j++) {
                             if(compareDate(today, tr.cells[j].innerText)) {                         
                                  elt = tr.cells[j];
                                  while (elt) {
                                       coords.x += elt.offsetLeft;
                                       elt = elt.offsetParent;
                             break innerloop;
                   else{tr.cells[0].className = 'locked'}
         else {
              for (i = 1; i < cTR.length; i++){
              var tr = cTR.item(i);
              tr.cells[0].className = '';
         document.getElementById('tbl-container').scrollLeft = coords.x - 69;
    function compareDate(date1, date2){
         a = date1.split("-");
         b = date2.split("-");
         day1 = parseInt(a[0]);
         month1 = a[1];
         year1 = a[2];
         day2 = parseInt(b[0]);
         month2 = b[1];
         year2 = b[2];
         if(year1 == year2) {
              if(month1 == month2) {
                   if((day2 >= day1)) {return true;}
                   else {return false;}
              else {return false;}     
         else {return false;}
    }</code>
    Cheers,
    Rich

  • Horizontal scroll stopped working on Windows 7 partition

    For the last few days the horizontal scroll has not been working on Windows 7 64-bit partition on my Macbook Pro 13" 2011
    The vertical scroll is working fine. But horizontal has stopped working. I see the horizontal scroll bar on web pages or documents or explorer. But it does not work. It used to work before.
    I have looked in Boot Camp control panel but there is not a setting to enable it.
    In Apple partition both horizontal and vertical scrolls are working that means the hardware is good.
    someone please help

    Just to clarify that the horizontal scolling is not working through the trackpad. I am not able to scroll left and right using two finger swipe...But I am able to scroll horizontally when I click and drag the scrollbar left and right

  • How do I lock the scroll bar on, keeping valid HTML5?

    I have a site that was originally created in FrontPage some years ago, and I have now redone it using Muse (not before time, I hear you say!)
    There were several pages on the site where the content was not large enough to need to be scrolled on most displays, and some browsers removed the scroll bar from the right of the page when those pages were visited. This resulted in a shift to the right on those pages, which made all the fixed elements move on the screen when going between pages, which I found very annoying.
    I fixed it by adding this code to the pages in question -
    <style type="text/css">
    /* Force Right Scrollbar */
    html { overflow-y : scroll; }
    </style>
    This worked fine and locked the scroll bar on, and I wanted to do the same with the Muse version of the site.
    I have added the same code using the add HTML feature, and it still works fine.
    However, if I run any of the pages concerned through a validator, I get the error -
    Validation Output: 1 Error
    Line 23, Column 28: Element style is missing required attribute scoped.
         <style type="text/css">
    I tried to find out why this was, but all I found was a lot of standards documents which were mostly way over my head!
    So, is there any modification I can do to that code to get it through the validator, or do I need to look at a different method of locking the scroll bar on on my web pages?
    Thanks for any and all suggestions!
    Dave.

    Thanks very much jgrummel and Vikas.Sharma!
    Sorry for the delay in responding.
    I have now added "scoped="scoped"" to the code, and the validater (http://validator.w3.org) is now showing just a warning rather than an error.
    "Line 23, Column 44: The scoped attribute on the style element is not supported by browsers yet. It would probably be better to wait for implementations.
         <style type="text/css" scoped="scoped">"
    I'm not too worrid about that, as it is still passing it!
    The code is inserted on the master page of my site, so it presumably propagates through to all the pages, including those that don't need it, but this doesn't seem to cause any problem.
    The site is here - http://www.thedraculasociety.org.uk

  • Horizontal scroll bar in tabular form with columns freeze

    Hi All,
    I have a requirement where i have to create a tabular form in which the first three columns should be in freeze mode and it should have a horizontal scroll bar.
    with the help of Google i found an example [http://apex.oracle.com/pls/otn/f?p=267:46]
    I want the same thing as in the example but with first three columns in freeze mode
    But could not find out how to create this column freeze and horizontal scroll bar.
    Let me know if you have any idea on this
    Thanks in advance,
    Ananth

    Hi,
    It is easy to look at the page source and see what they have done
    if you search for var d1 = document.getElementById("d and d1 you see some javascript doing the magic.
    Thanks

  • Poor graphics redraw when scrolling Word documents

    I have a strange blurring effect when scrolling Word documents on my Macbook pro, as if the graphic card had trouble refreshing: the screen is interspersed by horizontal irregular lines that make it impossible to read the text.
    I have recently replaced the logic board. Anyone has an idea of what this could be?
    Thank you for the help!

    I've only seen this in Word, and only in Page Layout view. It does not occur in Notebook view (although there are other stability issues with that view). At the moment I'm working on a 125 page document that I am writing, and scrolling through there are no problems.

  • HP 5-button mouse comfort BR376AA - Driver & Horizontal scroll problem

    Hi all,
    I have a problem with HP 5-button mouse comfort BR376AA. Operating System Windows XP SP3 32bit
    I installed driver 
    Released: 2011-06-29 File name Release_WW_Setup.exe [1/1, 28.25M]
    from http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=DA-89892-1&cc=us&dlc=en&lc=en&...
    But in HP Mouse control center-> menu Buttons, text box Connected Device is message: No mouse has been detected
    In Control Panel, Device manager, Mice is HID-compliant mouse only, no HP mouse
    Horizontal scroll does not work.
    I didn´t find any alternative driver.
    Could anyone help me please?
    Thanks

    @Jara1 
    Thank you for using HP support forum. I have sent you a private message. If you’re unsure how to check your private messages please click here.
    Thank you,
    Omar
    I Work for HP

  • Horizontal scrolling with captioned images?

    Hey everybody I'm helping a friend with his new site and need help figuring this out:
    - I want to add left-aligned text captions below each of the horizonal scrolling images.
    - I also want the images/captions to automatically resize to fit every window size (as the images currently do) - would be great if the image caption texts would automatically resize and become smaller with smaller window sizes.
    Example here (this is a test without captions): http://briankokoska.com/indextest2.html
    If somebody could please try to code the page including the word "caption" left-aligned underneath each of the images I would be very greatful. This way i can add the proper captions myself.
    Thanks in advance for your help!!!

    Horizontal scrolling and fixed divisions don't work well in mobile devices.
    Try this code in a new, blank document and SaveAs test.html.  This works much better in mobile/tablet devices.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>BRIAN KOKOSKA</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    body {
    width: 98%;
    color: #000;
    padding: 0 1%;
    font-size: 125%;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    header {
    position: fixed;
    top: 0;
    right: 3%;
    margin: 0;
    width: 35%;
    font-weight: bold;
    text-align: right;
    background: rgba(255,255,251,0.5)
    header * { padding-right: 1% }
    header address a {
    padding-top: 25px;
    margin-bottom: 0;
    color: red
    header p { margin-top: 25px; }
    header h2 a {
    color: blue;
    font-size: 75%;
    margin-top: -10px;
    section { display: table; }
    article { display: table-row; }
    /**Captions**/
    article p {
    display: table-cell;
    vertical-align: middle;
    margin: 2%;
    padding: 2%;
    color: red;
    /**re-usable classes**/
    .center { text-align: center }
    .right { text-align: right }
    .red { background: rgba(255,0,0,0.5); }
    .white { background: rgba(204,204,204,0.5) }
    .blue { background: rgba(0,102,204,0.5) }
    /**links**/
    a img { border: none }
    a {
    text-decoration: none;
    color: #000;
    display: block;
    line-height: 2em;
    a:hover, a:active, a:focus { text-decoration: underline }
    /* Special Rules for Mobile, Tablets */
    @media only screen and (max-width: 1024px) {
    body { font-size: 90% }
    img { width: 100% }
    header {
    width: 100%;
    position: static;
    padding: 0.5%
    article p {
    display: block;
    padding: 0;
    font-size: 90%
    </style>
    </head>
    <body>
    <header>
    <h1 class="right">BRIAN KOKOSKA</h1>
    <address>
    <a href="mailto:[email protected]">[email protected] </a>
    </address>
    <h2><a href="http://mfineart.ca/artists/brian-kokoska-selected-works/" target="_blank">Macaulay &amp; Co. Fine Art</a></h2>
    <p class="blue"><a href="http://briankokoska.com/installationviews">INSTALLATION VIEWS</a><p>
    <p class="white"><a href="http://briankokoska.com/selectedworks">SELECTED WORKS</a></p>
    <p class="red"><a href="http://briankokoska.com/info">INFORMATION</a></p>
    </header>
    <section>
    <article>
    <p>Caption goes here...</p>
    <p><a href="http://lvl3gallery.com/post-hope-1262013-2172013/#1" target="_blank">
    <img src="http://briankokoska.com/briankokoska_posthope_smallest.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://lvl3gallery.com/post-hope-1262013-2172013/#1" target="_blank">
    <img src="http://briankokoska.com/briankokoska_posthope_smallest2.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://voxpopuligallery.org/exhibitions/painting-bitten-by-a-man/" target="_blank">
    <img src="http://briankokoska.com/briankokoska_paintingbittenbyaman_smallest.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://voxpopuligallery.org/exhibitions/painting-bitten-by-a-man/" target="_blank">
    <img src="http://briankokoska.com/briankokoska_paintingbittenbyaman_smallest2.jpg">
    </a></p>
    <p> Caption goes here... </p>
    <p>image here</p>
    Etc.....
    </article>
    </section>
    </body>
    </html>
    Nancy O.

  • Horizontal scroll-bar on folder view

    This is a big problem for me, my folder structure is very complex and has lots of nested, long-named folders. Even maximizing the left sidebar size, I still can't view the most nested ones!!
    2 solutions:
    - add a horizontal scroll-bar
    - (Picasa like), make some folder temporarily the top one (don't like this one personally)
    and by the way, the nesting margin should really be reduced!
    thanks
    Luca

    I agree, but in the mean time, Jeffrey's Configuration manager allows you to make the panels arbitrarily wide:
    http://regex.info/Lightroom/Config/

  • Spark list horizontal scroller doesn't actualize when rows is set lesser than list container

    Hello,
    The size of the Image control is set larger than that of its parent Group  container. By default, the child extends past the boundaries of the parent  container. Rather than allow the child to extend past the boundaries of the  parent container, the Scroller specifies to clip the child to the boundaries and  display scroll bars.
    In the spark list, when I change the list dataProvider and the size of the Image control is set lesser than that of its parent Group  container, the horizontal scroller doesn't actualize.
    thanks.

    <!-- Simple example to demonstrate the Spark List component -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" applicationComplete="comp()" width="260" height="400">
        <fx:Script>
            <![CDATA[
        import mx.collections.*;
        public var dpArray:Array;
        [Bindable]
        public var dpCol:ArrayCollection;
        public function handleClick():void {
            dpCol.removeAll();
            dpCol.addItem({ label:"spark test" });
            dpCol.addItem({ label:"spark text" });
        public function comp():void {
            dpCol = new ArrayCollection(dpArray);
            dpCol.addItem({ label:"spark list horizontal scroller doesn't actualize when rows is set lesser than list container" });
            dpCol.addItem({ label:"spark test" });
            dpCol.addItem({ label:"spark text" });
             ]]>
        </fx:Script>
        <s:Panel title="List">
            <s:VGroup left="20" right="20" top="20" bottom="20">
                <s:List width="200" id="lis" dataProvider="{dpCol}" height="120"/>
                <s:Button id="button1" label="Click here!" width="100" fontSize="12" click="handleClick();"/>
            </s:VGroup>
        </s:Panel>
    </s:Application>

  • Annoying Finder Horizontal Scroll Bar

    I have an annoying Finder issue with Mountain Lion OS X 10.8 and maybe someone knows how to fix.  When I have a folder displayed, like the Applicaitons folder, with View opton set to "as List" the Finder displays a long horizontal scroll bar at the bottom that is active. How can I lock or anchor the horziontal scroll bar to the left side. It really gets to be annoying as you mouse scroll up and down the list.  I have the same issue in with Excel and Numbers. If it cannot be locked to the left, can it be disabled or deleted?

    I just made each item listed the min width and this let me resize the window to ditch the horziontal scroll bar. This helped but did not solve the issue on how to lock it to the left or turn it OFF.
    Thanks

Maybe you are looking for

  • Is there a way to open the right click menu on the left side of your pointer?

    Whenever I try to right-click an object that's located on the right side of the screen, the pointer always automatically click whatever entry in the right-click menu which just happens to be under the pointer the moment the menu is opened. I noticed

  • I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

    I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

  • Format Drive and Reinstall Lion?

    My Macbook Pro hard drive failed.  It is completely unrecoverable.  I've purchased a replacement.  How do I format the drive, install Lion and restore my system from my Time Machine backup?  My Time Machine backup was created from a USB connection di

  • 2 medium for same output type

    Hi, is it possible to create 2 condition records for the same output type BA00 but i want it to be transmitted to 2 different medium. eg: 1 - print      6 - EDI now i am unable to do so. I am defining my output via sales org. but when i enter 2 recor

  • CSS Implementation

    Currently CSS 11500 is setup on inside network behind firewall and is set with a default route of our core switch. If possible though would like to load balance servers on both the inside and DMZ networks. Is this going to be possible and if so how d