Page down  Page Up

I know that the space bar pages down in Safari, is there a keyboard shortcut for page up?

I also just noticed the page up key on my keyboard, "duh"!!
Yes, that's an option too, however, I find shift/spacebar to be a bit faster to access. Also, you can use the Arrow keys...a bit slower, but still effective.
Thanks for the and Aloha from Big Island.

Similar Messages

  • Help! Need to override Page Down/Page Up in JList

    Help! Need to override Page Down/Page Up in JList...
    PgUp PgDn selects the top or bottom item in a Jlist when JList is in focus. I want PgUp and PgDn to do something different (which it does), but it still selects top or bottom items. How do I COMPLETELY remove all key listeners in the JList?
    Oliver

    Sounds like you are just adding a key listener to the list and just
    listening for PAGE_UP/PAGE_DOWN. Which is why the original behavior is
    still there: both your listener and the list's own handler are being
    invoked.
    What you might want to do instead is to either set your own action
    for PAGE_UP/PAGE_DOWN in the list's input map, and then set that action
    to your own in the list's action map, or try setting the scrollUp and
    scrollDown actions to your own action in the list's action map. Note
    that shift PAGE_UP/PAGE_DOWN are also bound, by the way.
    : jay

  • Page up and page down = pages go off centre

    A very basic question: when flipping through the pages of a book I've laid out, it would be nice if using the page up or down keys moved to the next page and centred them. Instead, however, the pages are moved knocked out of centre each time. How to get around this?
    This happens at all sizings except for 100%. The page size is closest at 127% to the actual physical printed page. There should be a way to set this as the defaul page size. At 127% the up and down keys result in the page dancing bout the screen going off centre both horizontally and vertically. At 100% the centreing is fine verticallz as you flip through the pages, but depending on whether its an odd or even page, the pages will still jump around horizontally. I'm working in spreads.
    Thank you.

    ... and Shift-PageUp/PageDown is the default for moving through the document in discreet pages.
    But if your like me and prefer PageUp and PageDown to move a full page, you can edit the shortcuts to work that way.

  • [SOLVED] Page down/Page up bash completion.

    In gentoo, bash has a feature when i press page down or page up with an incomplete command written. It completes the command writing based in history.
    For example:
    [frost@euclides] ~ $ c
    [frost@euclides] ~ $ cd
    With page up i can switch between c, cd, cat, etc.
    But apparently it behaves different in arch.
    How can i enable this funcionality in arch?
    Thanks in advance.
    Last edited by Frostwarrior (2009-07-27 21:47:52)

    Sorry, that's not what you are asking...
    try adding the following to /etc/iputrc
    "\e[5~": history-search-backward
    "\e[6~": history-search-forward
    comment out the existing vlaues.  I hope this helps.

  • Upgraded to snow leopard, now safari scrolls a page down when space bar is hit and sometimes crashes.  Any ideas for a fix?

    I just upgraded to the new snow leopard, now my Safari is acting loopy.  At times, the page will scroll down when I hit the space bar.  As I type this discussion the screen isn't paging down, but if I go to the tab where I have facebook loaded and hit the space bar, it acts as a page down key.  I've had safari crash about 5 times tonight for no apparent reason.  The delete key sometimes will act as a page back key.  I really have no idea whats going on. 
    I've had keyboards go wacko on me before due to something being spilled on them or a wireless problem, but this keyboard is a wired keyboard and nothing was spilled on it.  It's rather new and I'm quite certain it's not a keyboard issue. 
    No settings have been changed on the computer.  The only thing different today from yesterday, is the fact that I upgraded to snow leopard.
    Help would be pretty sweet.   
    Thanks,
    Jason

    I just upgraded to the new snow leopard, now my Safari is acting loopy.  At times, the page will scroll down when I hit the space bar.  As I type this discussion the screen isn't paging down, but if I go to the tab where I have facebook loaded and hit the space bar, it acts as a page down key.  I've had safari crash about 5 times tonight for no apparent reason.  The delete key sometimes will act as a page back key.  I really have no idea whats going on. 
    I've had keyboards go wacko on me before due to something being spilled on them or a wireless problem, but this keyboard is a wired keyboard and nothing was spilled on it.  It's rather new and I'm quite certain it's not a keyboard issue. 
    No settings have been changed on the computer.  The only thing different today from yesterday, is the fact that I upgraded to snow leopard.
    Help would be pretty sweet.   
    Thanks,
    Jason

  • Page up and page down in ALV

    Hi all ,
         Page up and page down are not working automatically in my ALV Grid report. I have all set in my pf-status. Do i need to explicitly write any code for that or do i need to any setting for that plz let me know .
    regards
    rao

    Hi,
    i hope the problem is with the Pf-status,so try to do the following and see...
    Go to SE41 give the Program name SAPLKKBL
    and status as STANDARD
    now click Copy status (CTRL+F6), now give your Program name , and PF-status and copy it. now save it and activate the pf-satus which you have copied. and use it in your PF-status form.pass that status using the parameter call back status option.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    * I_INTERFACE_CHECK = ' '
    * I_BYPASSING_BUFFER = ' '
    * I_BUFFER_ACTIVE = ' '
    i_callback_program = g_repid
    i_callback_pf_status_set = 'STATUS'
    i_callback_user_command = 'USER_COMMAND'
    2.
    FORM STATUS USING P_EXTAB TYPE SLIS_T_EXTAB.
    *- Pf status
    SET PF-STATUS 'STATUS' excluding p_extab.
    "this is i copied it from standard program
    ENDFORM.                 " STATUS
    now check it.
    Regards
    vijay

  • Not able to do page down in table control of screen

    Hello,
    I have created a table control on a screen of my report. This screen gets called from my selection screen. When I do page down or click on down arrow key to view other table entries nothing is happening. The scroll bar is not moving vertically.
    Someone told me that no coding is required to make the table scrollable vertically.
    Can someone please tell me if there is any attribute that needs to be set for this?
    Best Regards,
    Priyanka Gupta.

    Hi,
    Please go through this code.
    dataL line_count type i.         " Global declaration
    In the PAI of the table control screen.
    CASE OK_CODE.
         when 'P--'.
          clear ok_code.
          perform paging using 'P--'.
         when 'P-'.
          clear ok_code.
          perform paging using 'P-'.
         when 'P+'.
          clear ok_code.
          perform paging using 'P+'.
         when 'P++'.
          clear ok_code.
          perform paging using 'P++'.
    form paging using code.  "   NOTE  :  here "TABCTL" is your table control name
      data: i type i,
            j type i.
      case code.
        when 'P--'.
          tabctl-top_line = 1.
        when 'P-'.
          tabctl-top_line = tabctl-top_line - line_count.
          if tabctl-top_line le 0.
             tabctl-top_line = 1.
         endif.
        when 'P+'.
          i = tabctl-top_line + line_count.
          j = tabctl-lines - line_count + 1.
          if j le 0.
             j = 1.
          endif.
          if i le j.
            tabctl-top_line = i.
          else.
            tabctl-top_line = j.
          endif.
        when 'P++'.
          tabctl-top_line = tabctl-lines - line_count + 1.
          if tabctl-top_line le 0.
             tabctl-top_line = 1.
          endif.
      endcase.
    endform.                   
    Hope this will help you.
    Regards,
    Smart Varghese

  • I want to always be able to page down using space bar, but some web pages seem to disable this.

    I often use the space bar to page down in web pages rather than scrolling with the mouse or arrow keys, but in the last few months I've encountered a number of pages that don't seem to allow this browser feature to work. For instance, space bar doesn't page down on https://medium.com/about-work/65d4740f7a2f, although it works fine on mozilla.org and nearly all other sites. The problem is specific to particular pages, so I think it's unlikely to be an add-on problem, and it's certainly not that I've turned on caret browsing. As far as I've tested, the arrow keys still work to scroll such pages, and the mouse always works, so it seems as if space bar has been specifically disabled. (Generally the pages on which space doesn't work seem to be specialized for phones, judging by layout and font size.) Is it possible to reject whatever code is disabling my browser so that my space bar always works?

    Another possibility would be a userscript. A userscript is generally written to work on a particular site, although it also can be made to work globally on all pages.
    To run a userscript, you require either the Greasemonkey extension or the Scriptish extension.
    And somebody to write the script! You can propose a new userscript to the community and see whether anyone is willing to create it for you.
    Ideas and Script Requests forum: http://userscripts.org/forums/2
    (I searched briefly on userscripts.org but didn't see a script for this purpose posted there. Please be careful in testing scripts from the site as many recently posted scripts mess with your Facebook account when you visit FB.)

  • Regarding page down in the table control veritcally

    Hi all,
              I have an issue regarding page down in the Table control in module pool , i.e when i m click the vertical scroll bar and going for page down then , the control is flowing to the next sceen which is not needed , and it shuld just scroll down and up vetically.
    Can anyone help me how to handle the page down event ?
    Thanks & regards,
    satya

    Table Controls: Examples with Scrolling
    The following example processes a table control with LOOP without parallel loop using an internal table. In addition to the scroll bar, the user can also carry out program-controlled scrolling with function codes.
    REPORT demo_dynpro_tabcont_loop.
    CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: itab TYPE TABLE OF demo_conn,
          fill TYPE i.
          TABLES demo_conn.
    DATA: lines TYPE i,
          limit TYPE i.
    SELECT * FROM spfli INTO CORRESPONDING FIELDS OF TABLE itab.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      DESCRIBE TABLE itab LINES fill.
      flights-lines = fill.
    ENDMODULE.
    MODULE fill_table_control OUTPUT.
      READ TABLE itab INTO demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE read_table_control INPUT.
      lines = sy-loopc.
      MODIFY itab FROM demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'NEXT_LINE'.
          flights-top_line = flights-top_line + 1.
          limit = fill - lines + 1.
          IF flights-top_line > limit.
            flights-top_line = limit.
          ENDIF.
        WHEN 'PREV_LINE'.
          flights-top_line = flights-top_line - 1.
          IF flights-top_line < 0.
            flights-top_line = 0.
          ENDIF.
        WHEN 'NEXT_PAGE'.
          flights-top_line = flights-top_line + lines.
          limit = fill - lines + 1.
          IF flights-top_line > limit.
            flights-top_line = limit.
          ENDIF.
        WHEN 'PREV_PAGE'.
          flights-top_line = flights-top_line - lines.
          IF flights-top_line < 0.
            flights-top_line = 0.
          ENDIF.
        WHEN 'LAST_PAGE'.
          flights-top_line =  fill - lines + 1.
        WHEN 'FIRST_PAGE'.
          flights-top_line = 0.
      ENDCASE.
    ENDMODULE.
    The layout of screen 100 is:
    A resizable table control called FLIGHTS is defined. The fields of the table control are transferred from the structure DEMO_CONN in the ABAP Dictionary. The first two columns are lead columns. The corresponding fields are output fields. A title bar, column headers, and a selection column are created. The component MARK of type character with length 1 from structure DEMO_CONN is assigned to the selection column. You can select one column and several lines.
    It has the following flow logic:
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      LOOP WITH CONTROL flights.
        MODULE fill_table_control.
    ENDLOOP.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      LOOP WITH CONTROL flights.
        MODULE read_table_control.
    ENDLOOP.
      MODULE user_command_0100.
    The system executes a loop at PBO and PAI using the table control FLIGHTS. During the PBO loop, a module is called to fill the table control from table ITAB of the ABAP program. During the PAI loop, a module is called to modify table ITAB.
    Before the PBO loop, in the module STATUS_0100 the current number of lines of the internal table ITAB is placed in component LINES of control structure FLIGHTS. This helps the system to correctly install the scroll bar of the table control.
    During the PBO loop, in the module FILL_TABLE_CONTROL the work area DEMO_CONN is filled with values from the internal table, where the row index corresponds to the current row of the table control.
    During the PAI loop, in the module READ_TABLE_CONTROL the current number of the loop SY-LOOPC in the table control is placed an auxiliary variable. The number is dependent on the size of the screen. The rows of the internal table, whose row index corresponds to the current row of the table control, are overwritten with the contents of the work area DEMO_CONN. User input is transferred from the input fields of the control to the internal table. In particular, the internal table also contains a flag in the column MARK to indicate whether the row of the table control is selected or not.
    After the PAI loop, user input is processed in the module USER_COMMAND. The GUI status SCREEN_100 provides the appropriate function codes. You can scroll line by line or page by page, or Goto the first or last page. You can implement scrolling by setting the component TOP_LINE of control structure FLIGHTS. For page-by-page scrolling the auxiliary variable that is filled in the PAI loop by SY-LOOPC is used as the step size.

  • In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    Hit the '''F7''' key, you probably have Caret browsing turned on.
    http://kb.mozillazine.org/Accessibility.browsewithcaret

  • What is the keyboard shortcut for scrolling page down? In Pages, Safari, etc... Just a single page/ screen view, not all the way to the bottom.  Thank you.

    Trying to navigate the screen without my mousepad.  I have carpal tunnel and early stage arthritis and cannot repeatedly make the appropriate motions to scroll with two fingers.  Is there a keyboard shortcut for scrolling up and down line by line or page by page? 
    Thank you.

    Yeah. sorry. those are not correct. ctrl N + P are for home and end line shortcuts. Ctrl V does go down one line.  But CTRL arrow up or down do not work in Safari.  But thank you very much for the attention and the time...
    Note from my first post above -- I did not say to use CTRL arrow in Safari:
    For Safari:
    Scroll down a line: down arrow
    Scroll down a screen: option down arrow
    Note from my second post above and from the first link I gave that  Control N, P, and V worked for me in Pages as described in the link and in my post:
    The link to shortcuts that I gave abaove includes Control N, P, and V for move down a line, up a line and down a page and those seem to work in Pages.

  • Page Up and Page Down keys

    I converted a forms 5.0 program to Forms 6.0.
    Strangely my PageUp and PageDown keys are not working any more. In forms 5.0, Pageup and Page down keys automatically scroll my records. But in forms 6.0 they do not work.
    I tried the ScrDown, SCRUp triggers to associate them to PageUpa and PageDown but it did not work. Can any one suggest me how I can make my PageUp and PageDown keys in forms 6.0?
    Thank you and best regards,
    null

    Now I'm not sure how to isolate problem... I should have done [next tip ahead] before, but thought what I tried before was sufficient.
    I opened a long 'text' file in the browser to see how the Page Up, Page Dn & arrow keys would work, and they appear to work fine. But on 'html' pages of popular websites, the keys do not work right. The arrow keys don't work at all sometimes, and the Page Up, Page Dn keys sometimes work in 'semaphore' fashion; that is, pressing Page Up 'once' does nothing, then 2nd time, page moves up; 3rd time, nothing; 4th time, page moves up, etc.
    (Note: I also tried changing the 2 'scroll' related settings in Tools>Options>Advanced>General, but those had no effect. I left both 'on".)
    [Also, I never use Tab & Ctrl keys for scrolling, and using them now does not affect anything.] This is only about the Page Up Page Dn and arrow keys, which used to work fine pre-8.0.1, and now do not work as expected.

  • Page up and page down keyboard commands

    I just installed CS4 on my laptop. The page up and page down keyboard shortcuts are not responding. That's a big handicap. I know these are default commands to go to edit points. Do I need to to go somewhere in preferences to check for defualt commands. I have been using earlier versions of CS for some time and I don't remember having to do anything like that previously. It seems logical to me that I must be overlooking something simple. Thanks in advance for any insight.

    Thank you Bill. I have tried that about as many ways
    as a person can. Its just a dead key response. Since I just started on CS4, I could use some tutorials on this. Do you have any links for free tutorials?
    thanks in advance for your help
    Judy

  • Page Up and Page down functionality in table control

    Hi,
        I want to add two pushbuttons in the module pool screen which has a table control that fetches data from the transparent table. One pushbutton is for the page up and other is for page down. If my table control <say tab_ctrl1> has 75 records in total with shows 25 at time so with a single page down it should show next 25 rows of the data.
    thanks
    ekta

    Hi,
    Use the function module SCROLLING_IN_TABLE.
    For ok_code pass P- for previous page and P+ for next page.
    Example:
       DATA L_TC_NEW_TOP_LINE     TYPE I.
         CALL FUNCTION 'SCROLLING_IN_TABLE'
              EXPORTING
                   ENTRY_ACT             = Table_Control-TOP_LINE
                   ENTRY_FROM            = 1
                   ENTRY_TO              = Table_Control-LINES
                   LAST_PAGE_FULL        = 'X'
                   LOOPS                 = 25
                   OK_CODE               = 'P+'
                   OVERLAPPING           = 'X'
              IMPORTING
                   ENTRY_NEW             = L_TC_NEW_TOP_LINE
              EXCEPTIONS
    *              NO_ENTRY_OR_PAGE_ACT  = 01
    *              NO_ENTRY_TO           = 02
    *              NO_OK_CODE_OR_PAGE_GO = 03
                   OTHERS                = 0.
       Table_Control-TOP_LINE = L_TC_NEW_TOP_LINE.
    Regards,
    Sesh

  • Page Up and Page Down in ALV Grid

    Hello Experts,
    I have a simple ALV Grid report program. . If the report displays a lot of records then the scroll ups and downs can be used. However the new requirement is to make the page up, next, prevoius, down function. I have already included a SET PF-STATUS where I copied the standard and added the page up,down,next and previous. Those buttons/icons are now active in the toolbar but its not functioning as expected, nothing happens when it is being clicked. I've read some forums and below are the propose solutions:
    - Reduce the SAP work area --> how to reduce it?
    - Most forums are about ALV Grid report in OO and Dialog programming whereas a code will be put in PAI and PBO to make the page up, down buttons to function. --> How will this be applied since the report is just a simple report program (not OO or dialog)
    What is best solution to apply in my case?
    Thanks in advance!
    Best Regards,
    Alezandro

    hi kurtt
    Perhaps the below code, for scrolling the buttons can help u if the PF status and functionlity is already in place-
    module scroll_tab input.
    data: v_lines1 type sy-loopc.
    clear: ok_code,
    save_ok.
    ok_code = sy-ucomm.
    save_ok = ok_code.
    case save_ok.
    when 'PU'. "Page Up
    tc1-top_line = tc1-top_line - lv_looplines.
    if tc1-top_line < 1.
    tc1-top_line = 1.
    endif.
    when 'PD'. "Page Down
    tc1-top_line = tc1-top_line + lv_looplines.
    if tc1-top_line > lv_lines.
    tc1-top_line = ( lv_lines - lv_looplines ) + 1.
    endif.
    when 'PTU'. "Page total up
    tc1-top_line = 1.
    when 'PTD'. "Page total down
    TC1-TOP_LINE = ( LV_LINES - LV_LOOPLINES ) + 1.
    describe table it_vbak lines v_lines1.
    tc1-top_line = v_lines1.
    endcase.
    endmodule. " SCROLL_TAB INPUT
    regards
    praveen

Maybe you are looking for

  • Flash player not working in Internet Explorer 10 Windows 8

    Flash player is working on Google Chrome, but whenever I use IE to access a site that uses flash, IE tells me I do not have flash and asks me if I want to install it. If I choose yes, then IE will try to download flash player, and when it finishes do

  • How to get a non-interactive Form

    Hello, Is it possible to use livecycle Forms to generate a non-interactive PDF using a pdf file? If using a xdp file i get a non-interactive pdf file, however, when using a pdf file as the input the pdf is always interactive. the parameters I used: s

  • Determining Applet Window location

    How can I get the actual window position of the root applet window (The Browser window, actually). No matter where I place the browser window, the root window always reports 0,0 for x,y (as shown below). I like to popup my dialogs centered in my appl

  • Zoom function stopped to work

    The zoom function (option key and +/-) used to work within all windows/applications. But suddenly it doesn't work anymore. What can I do to get functioning properly again? Thanks

  • Can I send email using Java from my localhost(Tomcat) with Internet connect

    Hi friends, Please tell me can I send email from my localhost (Tomcat) using Java when my computer is connected to Internet? I don't have any SMTP username or password or the like, as I found in some codes available in net. Please suggest and any sim