How can I make the wireless keyboard work

MMy wireless keyboard was working when I purchased it it at the end of dec. now it's not working.

Please post more details.
Is your keyboard an Apple keyboard.   Did you buy it new.   Was it in its original packing.   Where did you buy it from? 
Have you recently put in new batteries.   What brand are they?

Similar Messages

  • How can I make my wireless keyboard "discoverable" after replacing the batteries?

    How can I make my wireless keyboard "discoverable" after replacing the batteries? Bluetooth keyboard setup said my  "keyboard is not connected" when I turned it on today.....assuming the problem was batteries, I replaced them.

    I've got it working now.....

  • I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have had this same problem for weeks now with my 4S.  I just got a new 5S after being extremely frustrated and the same thing - no sounds.  After searching posts all over, I couldn't find a solution. I just told my friend of the issue and he asked "Do you have the Do Not Distrub on?"  I didn't even know such a function existed.  Upon looking that was exactly the issue.
    To resolve, go to Settings> Do Not Disturb> Manual.  If it is green, turn it off.  You will now get phone calls and text alerts.
    This functionality is also on your quick access utility menu (slide up menu).  I assume this is how it was enabled on my phone.
    I will post on other sites since I searched for weeks for this solution and didn't see it anywhere.  Good luck!

  • My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How can I make the editor photoshop work

    how can I make the editor photoshop work? it can not work at all.
    please help me . thanks

    You need to tell us at least what program you are referring to and some system info...
    Mylenium

  • How can I make the web server work on port 80 and not 443. I can only access my website using https.

    On a Mac Mini server with OS X Lion 10.7.2, I am unalbe to get the web server working on port 80. It switches automatically to port 443 (https).
    This situation complicates the access to FileMaker Web publishing, as I don't want my clients having to use https.
    How can I change that? Does anyone know?
    Thanks for any reply

    in the server: I checked the SSL certificate. Tried several configuration.
    Well, that's a problem for a start.
    Your port 80 connection should NOT use SSL. Port 80 is the standard HTTP port, not HTTPS and most applications that connect to port 80 will not expect to use SSL
    If you want to run a site under both HTTP and HTTPS then you create two sites, one on port 80 without SSL and one on port 443 with SSL

  • How can I make the FN buttons work with an older notebook?

    Hi,
    I have the Satellite 5200-902 notebook. Unfortunately there is no support for such an "old" notebook like this concerning Windows Vista. Vista runs great on it but the only thing I didn´t make is to make to FN buttons work in Vista.
    Can someone please give me an advice ?
    Thanks

    Hello Danny
    Unfortunately I do not believe you will have success with those buttons. The fact is that Toshiba use self designed utility for functionality of all FN buttons. As you know, old notebook models are not vista supported and you will not be able to find and install any utility for that.
    Sorry but there is nothing to do.

  • How can I make the ruler guides work?

    I am working on a large document. For some reason, I cannot extend the ruler guides onto most pages. They will appear on some pages though. Does anyone know why this happens and how to fix it?

    If the mouse is over a page when you release, the guide will be confined to that page, so horizontal guides will appear only on one side of a two-page spread. You can hold Ctrl (Cmd) while dragging to make them extend across the entire spread and pasteboard, or releas the mouse over the pasteboard for the same result.

  • How can I make the ${foo} syntax work?

    Hello,
    I have a jsp page and I am using Webwork with the action class exposing beans to the ognl value stack.
    Should I be able to write ${foo} with JSTL? I get the expected value if I write <c:out value="${foo}"/> I do get the expected value.
    The real reason I am asking is because I am trying to use a custom taglib and the parameters are not being evaluated. For example, ${accounts} should represent a collection and when I use <input:selectBox options="${accounts}"/> - the actual string "${accounts}" is passed to the tag. I would really appreciate some help. Thank you very much.
    I am using apache-tomcat 4.1.39 with jakarta-taglibs-standard-1.0.6 for the JSTL implementation. Thank you very much for any help you might be able to offer.
    Regards,
    Joe

    Thank you very much for the response... that makes a lot of sense. I still have 1 question though... this is the strange part;
    The standard JSTL taglibs seem to be able to handle the ${} syntax yet I am also working with a custom taglib that does not seem to have the tags parsed. If you can help me fix this, I would be extremely grateful...
    This works fine:
    <c:forEach items="${accounts}" var="account">
         <c:out value="${account.accountNumber}"/>
    </c:forEach>
    But, when using the custom taglib:
    <input:selectBox options="${accounts}"/>
    the options value in the tag class is actually "${accounts}" and no the list which ${accounts} represents. Do you have any idea as to why this would occur? Here is the tld (snipped to show the parts I am referring to)
         <tag>
              <name>selectBox</name>
              <tag-class>example.SelectBoxTag</tag-class>
              <body-content>JSP</body-content>
              <display-name>selectBox</display-name>
              <attribute>
                   <name>options</name>
                   <required>false</required>
                   <rtexprvalue>true</rtexprvalue>
                   <type>java.lang.Object</type>
                   <description>Any collection of elements to be added to select list</description>
              </attribute>
         </tag>
    thank you very much.
    Joe

  • How can I make the camera flash work on my iphone

    The camera on my iphone works fine, however the flash does not work? I have checked the options for the camera and cant seem to get it to flash when taking a picture in a dark area where the flash is critical can anyone help ?

    iPhone User Guide
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • How can I make the 'remote' app work across a routed network?

    So, I have trusted and guest networks, with iTunes running on a Mac on the trusted network. I'd like iOS devices on the guest network to be able to use the 'remote' app, specifically the DJ function.
    I think there will be two components:
    -- service discovery. Apple likes mDNS (Bonjour), so possibly can be done like this: https://discussions.apple.com/thread/2751128?start=0&tstart=0 but one would need to figure out what service discovery records remote is looking for.
    -- traffic. Appropriate traffic would need to be allowed between the two networks.
    Has anyone looked at the wire traffic for remote, or gotten this to work?
    Thanks,
    Heath

    Welcome to the Apple Community Dylan.
    There is no way to set up home sharing on the Apple TV without the original remote from Apple, you will need to purchase a new remote from the Apple Store.
    If you already have homesharing set up on the Apple TV, you merely need to set it up in the remote app settings.

  • How can I make the analyze clip work?

    I just installed CC 2014 and was hoping the analyze clip functionality would be fixed. But, after trying several things, I still can't get it to do speech recognition.
    Running the latest iMac and Mavericks.
    Can anyone help?

    You need to tell us at least what program you are referring to and some system info...
    Mylenium

  • How can I make the earphone inserter work?

    When I plug my earphones into my ipod, sound only comes out faintly in the earphones and this is not due to the earphones. It is due to my ipod. What can I do to fix this?

    You need to tell us at least what program you are referring to and some system info...
    Mylenium

  • I have a macbook pro. i think i might have pushed some buttons that made my macbook look for a wireless keyboard.. i dont have any wireless keyboard. and now i cant use the keyboard on my macbook. how can i get the normal keyboard staring?

    i have a macbook pro. i think i might have pushed some buttons that made my macbook look for a wireless keyboard.. i dont have any wireless keyboard. and now i cant use the keyboard on my macbook. how can i get the normal keyboard staring?

    korgba wrote:
    it pops up a script were it says that the macbook cannot find a bluetooth keyboard, and it isnt a keyboard connected
    For some reason, your Mac doesn't recognise that a keyboard is present, so it looks for a wireless keyboard. The question is, why doesn't your Mac recognise that a keyboard is attached?
    First, you need to make sure you remove all peripherals, especially USB peripherals (the keyboard is on the USB bus). Then restart holding down the Shift key. This should boot in Safe mode. If the computer boots normally (not in safe mode) and the keyboard is still not working, try resetting the SMC
    Intel-based Macs: Resetting the System Management Controller (SMC)
    <http://support.apple.com/kb/HT3964>
    If that still doesn't fix the problem, then the keyboard (or its controller) is probably damaged and needs to be replaced.

  • How can I get my wireless keyboard battery access to open. It's like the bloody thing has seized up and won't open?

    How can I get my wireless keyboard battery access to open. It's like the bloody thing has seized up and won't open? Tried the coin...nope.  Tried a screw driver...nope! Even tried WD-40 - nope! Or does this mean it's now in the boat anchor pile!

    They are designed for coins... is this your first time changing the battery? Make sure you are twisting in the right direction and make sure you are pushing down on it and applying pressure at the same time you turn.

Maybe you are looking for