How to set up wireless keyboards to work on 2 computers within 3 feet of one another

We work close together -- within 3 feet and need to use wireless keyboards if possible. One computer will recognize
the Apple wireless keyboard but my laptop will not recognize either of the 2 Apple wireless keyboards we own. I have changed
batteries, made sure Bluetooth is on and there is no other interference. Appreciate any help.

If the KB is paired with something, it needs to be deleted from that system before it can pair with something else. BT devices may only pair with one thing at a time.
If I did not understand your issue, post back.
Barry

Similar Messages

  • How do you connect wireless keyboard to ipad?

    How do you connect wireless keyboard to ipad?

    Go to Settings -> General -> Bluetooth. Turn on the iPad Bluetooth service and then the keyboard. They should find each other.
    BTW it's tricky to disconnect them. If you don't turn off the keyboard while it's paired, the iPad virtual keyboard won't work properly. Check the manual.
    The green light on the keyboard doesn't stay on all the time the keyboard is on, just for a few seconds after each change of state.
    The bluetooth keyboard - iPad combination is a very effective writing tool. The keyboard is very responsive.

  • After updates, wireless keyboard stopped working.

    HI...
    All was going along swimmingly, setting up my new iMac... I did some updates and then for some strange reason my wireless keyboard stopped working? I know it’s not the keyboard because delete works, my widgets work and some other keys work - and - the whole keyboard was working from start up (at first)...
    But I just can’t use the Alfa keys all of a sudden - very unusual, no?
    What happened?
    Any opinions, suggestions and comments are greatly welcomed
    Thank you in advance....

    For those who it may concern...
    I called up support and I had to delete two files from the Systems Library called “com.apple...systempreferences.plist” and “com.apple.universalaccess.plist”.....
    I hope you never need this information but - it worked for me....

  • The escape key in my wireless keyboard stopped working

    Dear list members, suddenly, the ESC key in my wireless keyboard stopped working. As it looks normal and all other keys are working properly, might it be a configuration problem? Could you please help me? I'm working on an iMac 27 late 2012 running OSX 10.10.2. Thank you.

    Please reset the SMC, this may take 2-3 attempts and post back with the results.
    iMac SMC and PRAM reset

  • Trying to set up wireless keyboard to apple tv

    How do I pair wireless keyboard to Apple TV?

    The following article(s) may help you.
    Using a Bluetooth Keyboard

  • How do I connect wireless keyboard to Tv

    How do I connect wireless keyboard to Apple TV

    Put the keyboard in pairing mode then go into the settings on the ATV and pair them.
    This is a bluetooth keyboard, correct?

  • How many sets of wireless headphones can I connect to my iPad at one time?

    How many sets of wireless headphones can I connect to my iPad at one time?

    Did you mean Bluetooth? One. Did you mean FM or infrared, driven from the 3.5mm output jack? Any number of them, assuming you use the same frequency to receive the stream.

  • Help! I can't get my wireless keyboard to work...

    Help! I can't get my wireless keyboard to work...

    What model iMac do you have?  What OS are you using?  What model keyboard do you have?  Is Bluetooth turned on?  Are good batteries in the keyboard?
    Good luck.

  • How to set a PDF to expire (Working Script)

    Here is a little script I made up the other night. You can use it to allow a PDF to be opened only until a set date. I use this for when my employees go to service a customer. I want them to be able to see the customer's information, but only for 24 to 48 hours.<br /><br />CheckExpiration()<br /><br />function CheckExpiration()<br />{<br />/*-----START EDIT-----*/<br />var LastDay = 21<br />var LastMonth = 3<br />var LastYear = 2008<br />/*-----END EDIT-------*/<br /><br />/* DO NOT EDIT PAST HERE !!! */<br />var today = new Date();<br />var myDate=new Date();<br />LastMonth = LastMonth - 1<br />myDate.setFullYear(LastYear,LastMonth,LastDay);<br /><br />if (myDate<today)<br />  {<br />    this.closeDoc(1);<br />    app.alert("This files has expired.",1,0,"Expired");<br />  }<br />}

    Here's a slightly different method, but it works..... (and, there is certainly no 'work around' for anyone to get data you don't want them to get!)
    <br />
    <br />It uses the Action on Open (sorry, I don't know the 'official' name of this - I'll describe it below..) in the pdf to send the user to a server checking mechanism (in this case, a date checker - but you could do the same thing with lots of stuff...)
    <br />
    <br />Here's how I set it up and it works great!
    <br />
    <br />1. Start a new document that you can get a form field into (don't use LiveDesign for this - that's too fancy... - just make a document in Word that says ______ then print to pdf to get a nice simple pdf that you can edit directly in Acrobat)
    <br />
    <br />2. Do a 'Run Form Field Recognition' and Acrobat will find the blank as a field.
    <br />
    <br />3. Edit this field to have a "key" name (my example, I will use "today" which tells me this is the day that my document starts).
    <br />
    <br />4. Under the 'Options' tab, make a Default Value of today's date (this will be the 'test against' date - for my example I'm showing how to expire a document in 30 days from creation date, but you could use anything you like - it is simple to modify!)
    <br />
    <br />5. From the 'Format' tab, use the Select format category of Date. Use a date format you like (my example uses mm/dd/yyyy) Note that this MUST match the server side code described later).
    <br />
    <br />6. For a 'live' document, you may want to go to the General tab and make the field Hidden as well as other things to not see the 'false' page, but that is outside the scope of this example.
    <br />
    <br />OK, now on to setting up the document to automatically send this info to your server for testing...
    <br />
    <br />1. Go to the 'Pages' view (click on the icon at the top left)
    <br />2. right-click on the page, select Page Properties.
    <br />3. Under the 'Actions' tab, select "Page Open" and "Submit a form" from the drop down boxes.
    <br />4. Enter a URL to your web page (see below) that does the checking (like http://mytestdomain.com/Scripts/checkexpiredate.php so it is easy to remember)
    <br />5. Check the HTML radio button.
    <br />6. Check the 'Only these...' button and then 'Select fields'. Make sure your "key" field is checked as well as the 'Include Selected' button (sometimes, for me, these weren't - I don't know why, so check it!)
    <br />
    <br />Now, on to the server side...
    <br />
    <br />Here's the code that goes into the php server file;
    <br />
    <br /><?php<br />$day = date("d");<br />$month = date("m");<br />$year = date("Y");<br />$today = substr($_REQUEST["today"],3,2);<br />$tomonth = substr($_REQUEST["today"],0,2);<br />$toyear = substr($_REQUEST["today"],6,4);<br />  $tsp = mktime(0, 0, 0, $month, $day, $year);<br />  $tsd = mktime(0, 0, 0, $tomonth, $today, $toyear);<br />  $xdays = ($tsp - $tsd)/(24*60*60);  // as calculated from dates<br />$maxdays = 30; //set this to whatever your 'expire from today' date is<br />if ($xdays >= $maxdays)<br /> //do what you like to tell the user it is expired<br />else<br /> //show the info you want them to see<br />?>
    <br />
    <br />i (the info shown (or not) is outside the scope of this message, this is just a 'one way to make this work' example. In my system, I use a program called fpdf [http://fpdf.org] to create the pdf from 'scratch', building it to show the reader what I want them to see - whether it is a "Sorry, this is expired" document, or the data that they came for if the time hasn't expired.)
    <br />
    <br />THAT'S IT!!! It works great and you can use it to do tons of stuff - just set the "key" on the original document and make the server code check whatever it is you want!
    <br />
    <br />Pretty cool, I think! (and, it only took me, a novice programmer, about 3 hours to figure it all out!)
    <br />
    <br />Best of success with it - enjoy!

  • Wireless keyboard stopped working on my iMac

    My wireless keyboard stopped working on my iMac. It shows that it is connected, but it won't respond.   It's not the batteries, and I tested keyboard on my iPad and it works fine on the iPad, so it is not the keyboard itself.
    I also tried to connect a different wireless keyboard to my iMac, but the same thing happens... it shows that it is connected, but it doesn't respond.
    When I go preferences >  bluetooth, the device shows as connected.  I have tried to remove it by highlighting it and clicking the   - (minus)  , but the - (minus) is not clickable.  It is gray.
    Also grayed is the box that says 'discoverable'.  the box is checked however.
    I am at a loss!!  Any ideas

    suecheat wrote:
    I have un-paird the keyboard from my Mac, and I have restarted my Mac.  nothing different
    You have to un-paired with your iPad not your Mac.
     > System Preferences... > Keyboard > Setup Bluetooth Keyboard

  • Wireless keyboard stops working when some keys adobe photoshop is open and being used.

    My apple wireless keyboard stops working some keys when using adobe photoshop. The lestras not work. Stop when I start using the stamp program for example. Is there any solution to this problem. For other macs minis did not have the same problem.

    Hello, what are lestras?

  • How to set up wirelessly officejet 4500 g510n-z on hp laptop

    how to set up wireless hp officejet 4500 g510n-z on my hp lapton

    Hi , Welcome to the HP Forums! I see that you are wondering how to set up wirelessly HP Officejet 4500  g510n-z on your HP laptop. I am happy to help you with this wireless setup!  What Operating System are you using? If you do not know the Operating System you are using, please visit this website. Whatsmyos. In the meantime, please see this guide, Setting Up the Printer for a Wireless Network for the HP Officejet 4500 Wireless All-in-One Printer. For future reference, here, is your printer's user guide.  Hope this information helps to get you online!  “Please click the Thumbs up icon below to thank me for responding.”

  • Does anyone know how to set up a macbook pro so that other computers can join me and use my internet connection?

    Does anyone know how to set up a macbook pro so that other computers can join me and use my internet connection?

    Have you set up any security on the Mac Connection Sharing?
    Sorry but I don't use that so I'm not familiar with the settings.
    But if you haven't setup and security the iPhone might not mind but I know most Windows computers do not like to connect to Open WiFi. and make sure it is WPA or WPA2.
    Then again it may be a setting in the connection sharing like some type of MAC filtering or it may simply be that Mac OS X connection sharing only allows one connection at a time. Try disconnecting your phone and then connect the PC.
    As to Linc's response about Windows.
    Windows basically does care about connecting to open, unsecured, WiFi. But it will normally pop up a windows asking "Are myou sure you want to connect to this open network". And a simple click on yes will get you connected and an IP address.
    So this is clearly a Mac OS X problem.

  • HT3500 MacBook Air 2011/ OSX Lion 10.7.2; Epson stylus SX430W Wi-Fi Printer; USB working OK. How to set up wireless connection via USB modem??

    Cannot get wireless functions to work, neither via MBA nor Epson setup screen; not IT literate No wifi network available, have I been suckered??

    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.
    Apple recommends that you deauthorize a device in the iTunes Store before having it serviced.

  • Magic mouse and aluminum wireless keyboard not working in windows 7

    Aluminum wireless keyboard (fully upgraded firmware as of 2/19/2010) not working, or magic mouse. Both from Apple Store, not amazon or ebay.
    No error shown for magic mouse, only "connecting to device" for 15 minutes now.
    With keyboard, at times it shows an error, but sometimes it lets me type a passkey. It doesn't recognize the passkey although it's saying it's paired, it doesn't work.
    Help?

    Getting Bluetooth set up initially in Bootcamp is a bit of a hit and miss affair in my experience, but persistence pays off, and connection is reliable. I gave up with the keyboard on my Mac Pro at one stage, tried again a few days later and it worked.
    How did you do it?
    Persistence and repetition, reading lots of threads and getting snippets from various sources, can't recall any silver bullets.
    Have you searched this forum, there are a LOT of posts on the subject.
    Links please? I can't find any.
    If you type "bluetooth" in the search box while at the top level of the Bootcamp section you will get six pages of hits. Here are just a few, not necessarily the best or a complete list or in any particular order, but they contain relevant info.
    I can't remember the detail now but one of the key steps for me was launching the bluetooth "service" mentioned in some of these links. Initially option wasn't appearing at all. Also mine (and others) seems to need a single click after boot to be activated. If you try and move it before a click it won't respond so you might think it wasn't working.
    BTW I am assuming you have successfully installed the Boot Camp 3.1 drivers?
    http://discussions.apple.com/thread.jspa?threadID=2221427&start=0&tstart=0
    http://discussions.apple.com/message.jspa?messageID=10943844#10943844
    http://discussions.apple.com/thread.jspa?messageID=10669525&#10669525
    http://discussions.apple.com/thread.jspa?threadID=2057008&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=10948512&#10948512
    http://discussions.apple.com/thread.jspa?messageID=10935130&#10935130
    I am afraid at this point I stopped trawling through looking for the most relevant ones so the above is incomplete.

Maybe you are looking for

  • Problem with custom checkbox in tx. IP02

    Hi experts, I added some new fields to IP02 in a new tab. One of this fields is a checkbox and I need to control whenever it is selected or not in order to enable/disable some other fields in the dynpro. I created a module "init_fields" in PBO where

  • Cant update in ipod touch why???

    why i cant update all of my application in my ipod touch? when i go to updates tab theres a massage saying that there is no internet connection same in featured tab, but when i go to top 25 tab there is a connection why??plss help

  • This babylon malware is in every firefox I download no longer able to use this product miss it.

    even when you tell installation not to load babylon it still loads the product. No matter where I download it from. Have cleaned with malwarebytes spybot search and destroy and others. Why this is even included in the package is beyond my understandi

  • How can I find a lost bookmark folder in another bookmark folder? I had a sticky mouse when I moved it.

    How can I find a lost bookmark folder? A folder stuck on my mouse pointer I shook the mouse and it released the folder somewhere in the hundreds of other bookmark folders. I don't want to have to open every folder and search every file to locate it.

  • Booklet not printing in spreads in CS6

    Print booklet's spread option is grayed out and the 12-page document is print as 6 pages even though the preview shows pages 12 and 1 as a spread. The final pdf file from Distiller is a 6-page document with pg 12 as as the first page and pg 1 is miss