My bluetooth keyboard doesn't do page down?!? And the F# keys are wrong???

Is there anything I can do?
I have 10.4.1, but I don't think that is the problem. (It really shouldn't be a problem in any case.) The keys are labeled differently from the MacBook, too. Maybe I should look into the Logitech keyboard...

Nevermind I fixed it, Apple support website says that the blinking light means it's discoverable, but I'm pretty sure that means it's low battery because as soon as I changed the battery it automatically reconnected literally within seconds. So yeah basically spent an hour or more but I fixed it by myself... I just decided to post back here and tell anyone who may have a similar problem.

Similar Messages

  • Premiere keyboard shortcuts dont work (page up/ page down ) and others

    I use the shortcuts for premiere alot but the keyboard shortcuts are no longer working
    page up / page down
    ctrl + k    = cut function
    home
    end
    not working
    but the play rewind and pause j,k, l are working
    i tried changing the shortcut to something else and then back but that didnt work eithe

    With at least Page Up/Page Down and Ctrl+K, they are dependent on having target tracks active. Click the track selectors in the header area (far left side of the timeline panel) to activate one or more tracks. Now, those shortcut keys should be effective.

  • Apple bluetooth keyboard doesn't allow text input on iOS 8 with voice over but allows navigation using arrow keys?

    Hi, upgraded to iOS 8 on my blind sister's iPad 2 but now the Apple Bluetooth keyboard doesn't seem to recognise text entry, the arrow keys still allow navigation using voiceover. Have had trouble before with the keyboard in iOS7 but have solved by reseting the iPad in settings. Any ideas? Sister is really struggling as she can't use iPad's software keyboard. Thanks

    My wife is a blind user too. In iOS 8 it is fussy about Quick Nav. on or off. We have an newer iPad but be sure Quick Nav is OFF (left + right arrows together) then try text entry. Hope it helps!

  • I have a 27" desktop mac running with OSX 10.6.8.  The bluetooth keyboard started not typing when some of the keys are pressed. Plugged in a wired keyboard, started doing the same thing.  Now the cursor moves but cannot select anything.  Suggestions?

    I have a 27" desktop mac running with OSX 10.6.8.  The bluetooth keyboard started not typing when some of the keys are pressed. Plugged in a wired keyboard, started doing the same thing.  When opening up a browser or application, the cursor moves but cannot select anything.  Suggestions?

    Maybe something in these Apple support articles will help.
    Keyboard Doesn’t Work
    Keyboard Keys Do Not Respond
    Keyboard/Mouse – Troubleshooting Wireless

  • 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.

  • I used to be able to refresh a page by hitting the F5 key. That does not seem to work anymore. Is there a keyboard shortcut for refresh, or can I create one?

    I used to be able to refresh a page by hitting the F5 key. With 4.0.1, that does not seem to work. Is there a different keyboard shortcut, or can I create one?

    Click the Refresh button on the right hand side of the location bar container on the Navigation Toolbar or press "Ctrl + R" or F5 to reload a web page.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • My IMAC screen went to sleep and I have it set to enter a password upon waking it up. However, my bluetooth keyboard died while it was asleep and I replaced the batteries and tried to enter my password and it is not picking up my keyboard. What can I do?

    My IMAC screen went to sleep and I have it set to enter a password upon waking it up. However, my bluetooth keyboard died while it was asleep and I replaced the batteries and tried to enter my password and it is not picking up my keyboard. What can I do? I will not let me enter my password to get in and trouble shoot the keyboard. Please Help!!

    I pushed in the button on the top right corner. It turns a green light on and then it goes off. I held it in until it started blinking. It blinks for a bit and then the green light turns off. I am still not able to type my password. What should I do now?

  • Is There a List of Keyboard Shortcuts for Adobe Digital Editions, I Found Two By Accident the "Arrow" Keys and the "Enter Key" for Turning Pages in an eBook...

    Hi  ??  :       Does Anyone Know If There is a List of Keyboard Shortcuts for Adobe Digital Editions, I Found/Discovered Two By Accident the “Arrow” Keys and the “Enter Key” for Turning Pages in an eBook...   Thanks
    I Did Look for this Keyboard Shortcuts in Adobe Digital Editions Help & FAQ Areas and Got the Run Around, Very Hard to Find How Use Adobe Products !!
    Microsoft Windows Vista & Win 7 Operating Systems
    Message was edited by: Al Adams

    Nope, I doubt it.  As I said:
    I disabled Aero theme, checked font scaling was 100% and rebooted Windows in between all of the steps to no avail.
    I've been reading a lot around this and it seems the arrow key problem is a red herring; I think it's just some kind of terminal preferences corruption.

  • IMac keyboard doesn't always work properly and Magic Mouse battery drain

    Owned my iMac for a few months now. First off, my batterys only lasted 23 days, not 3 months like stated by Apple. I've use both Duracell and Energizer and both last less than a month. Secondly, my wireless keyboard doesn't always function properly. When I'm trying to type something out, I always end up having to go back and add something that the keyboard has missed..
    For example, I just tested my Cap Locks key. I pressed it 10 times normally as you would when typing and the green LED only lit for 3 of the 10.
    But when I press hard it works everytime
    Is this a common problem or have I been sent out a defective pack?
    Thanks

    It's a long shot, but is a non-standard input selected here:
     > System Preferences > Language & Text
    Try selecting 'British' and see if the problem persists. Also, if you click on the little nationality flag in the menubar at the top of the screen and choose 'Show Keyboard Viewer', what happens when you press the '3' key? Does it light up as expected?

  • What's wrong with the built-in keyboard on my macbook? The caps button does not work rite, no matter what letter button i push they all come out capitals and the number keys when pushed display the special characters instead of the numbers!

    the built-in keyboard on my macbook is not functioning right, the number keys when pushed display the special characters instead of the numbers,
    the caps button doesn't work at all, the letter buttons display capitals when pushed whether the caps button is on or off, the shift keys are also out of whack!!
    It seems it somehow got relocated to the "0" button because if you push and hold the zero button down the keyboard seems to operate normally, the number keys display numbers when pushed the letter keys display lower case when pushed but release the zero button and your back in the twilight zone!! Can anybody help me resolve this issue? one more thing im using an external usb keyboard right now and it seems to function properly if that helps any.

    You would do better in the actual macbook pro forums (this is not).

  • I have an iPod 4th gen and the bottom part of it doesn't work where the space, .?123, and the go buttons are I droped it yesterday but it started doing this an hour ago I can slide to get in but it's stops working after that someone tell me how I fix this

    I have an iPod 4th gen and the bottom part of it doesn't work where the space, .?123, and the go buttons are not working I droped it yesterday but it started doing this an hour ago I can slide to get in but it's stops working after that someone tell me how I fix this

    Try:
    - Reset the iOS device. Nothing will be lost       
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                              

  • The following letters will not print on my wireless keyboard: q,w,e,r,t,y,u,i,o. All the other keys are fine.

    The following letters will not print on my wireless keyboard: q,w,e,r,t,y,u,i,o. All the other keys are fine.

    Keyboard/Mouse – Troubleshooting Wireless
    Keyboard Doesn’t Work
    Keyboard Keys Do Not Respond

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • I need to connect my old Mac book pro to the new one to transfer files.  The old one doesn't have Thunderbolt 2 and the new one doesn't have Firewire 800.  Will the Thunderbolt to Firewire adapter or Firewire to Thunderbolt adapter work?

    I want to transfer data from my old Mac book pro to my new one using migrate.  The old computer doesn't have Thunderbolt 2 and the new one doesn't have Firewire 800.  Does the Thunderbolt to Firewire or the Firewire to Thunderbolt adapter work to connect them and transfer data?
    Thank you!

    Yes, use a Firewire cable and the FW to Tbolt adaptor.

  • My keyboard on macbook pro (laptop) is acting weird. One key is not responding at all. Have verified using Keyboard viewer and some other keys are printing the unresponsive character at random.

    my keyboard on macbook pro (laptop) is acting weird. One key is not responding at all. Have verified using Keyboard viewer and some other keys are printing the unresponsive character at random. "z" is the unresponsive character.
    Is it a damaged keyboard ?
    The laptop is just 2 months old, will Apple replace it with a new one if its indeed a damaged keyboard or just repair, I use it for official purposes so being without a laptop is not much of an option.

    No one here works for Apple, so we don't know what Apple might or might not do.  If it's a genuine defect, they will of course repair it under warranty.  It is not their responsibility if it effects your ability to work or not, so that's on you.
    If, however, they determine that the key is problematic as a result of your misuse of the laptop, then everything is on you.  And trust me, if they find a glob of dried up beer or coffee there, they will charge you.
    Your only choice is to take it in for repair.

Maybe you are looking for

  • How can I access iCloud on an android phone?

    I have a work based android device. I note that whenever I try to open "iCloud" on a google search on it, it is somehow blocked. I can imagine why this is so given the marketing strategies of Apple and Google but there must be a way around this stupi

  • I have an emergency- Trying to convert a PSB file to a PDF files size is 3.58 GB - Please help

    I have a few files that I need to make ASAP into banners that are 19ft x 15ft and many other sizes.  I can only change into a RAW photoshop or a tiff.  I tried saving into a tiff then converting but nothing is working. I was also going to try to conv

  • Issues with Account Balance Report in chart of accounts

    Dear All, What i need is to bring remarks of all the documents,in ref2 column of Account Balance Report. What i thought is to create a new report but for that the i need to find the object id of the corresponding documents from orgin no column and fe

  • HELP!  Converting from Publisher - bullets don't convert???

    I am trying to convert a Publisher 2003 file by going to File, Print, to Adobe PDF. Every time it converts, it loses all the bullets and turns them into strings of dots ... I am trying to convert at the highest quality, as it is going to a commercial

  • Messsages not going in log file

    I have enabled diagnostics also did the settings as described in note -313695.1 on metalink. I have added some System.out.prints in my class file and uploaded on server and Im not sure where to dig for these messages. I looked in jserv.log , mod_jser