15" G4 FW800 Alu Replace Keyboard With Different Language Possible?

I have recently acquired a 15" PowerBook G4 FW800. The unit is Japanese and has a keyboard for that region. I ordered replacement keyboard that is US English. The new keyboard works great. However the layout it uses is still the funky English layout from the Japanese keyboard. Changing the Input settings does nothing. Hooking an external keyboard works fine and has the correct English layout.
When I go into Open Firmware the layout works as you would expect from the normal English QWERTY layout. I assume there is some sort of option in the firmware that tells MacOS X which keyboard layout to use for the internal keyboard.
Is there any way to force a specific keyboard language layout for the internal PowerBook keyboard or is this not possible at all?

Unfortunately that didn't work. The option doesn't show up for the internal PowerBook keyboard.
I had hoped for a more permanent solution like a way of modifying the firmware to change which type of keyboard MacOS sees attached. I would think that it's just a single value that it reads to determine this information.
I am going to take a crack at switching they keyboard again and see if the keyboard layout I created works ok with the US English keyboard. There are a couple buttons on that layout which aren't on the JIS layout so I don't know if those will work with the new layout. The layout is working fine with the JIS keyboard connected. We'll see.
Message was edited by: Jason Bean

Similar Messages

  • How to install Virtual Keyboard with Different language ?

    HI,
    How to install Virtual Keyboard with Different language (Arabic) in MacBook Pro ( Mac OS X v10.5.8 Leopard).
    Thanks,

    How to install Virtual Keyboard with Different language (Arabic) in MacBook Pro ( Mac OS X v10.5.8 Leopard).
    What are you talking about exactly?
    OS X comes with a virtual keyboard already. It is called Keyboard Viewer. You activate it by going to system prefs/international/input menu and checking its box (plus the box for Show Input Menu in Finder). At the same time you can check the boxes for the Arabic keyboard layouts.
    You can then select the Arabic keyboard layouts and the Keyboard Viewer from the "flag" menu at the top-right of the Finder.
    Let us know if you have further questions. If you are talking about some specific non-Apple app, could you provide the url?

  • X3-00 re-flash with different language possible th...

    My X3-00 died recently, without having received any mistreatment whatsoever.  It displayed "sim card registration failed" when I connected to the internet, and after turning it off, it wouldn't turn on again (*it showed the Nokia logo, then a white screen flashed 3 times before it turned off).
    It was fixed at a certified Nokia service by re-flashing it.  This phone had the Chinese version of the software (version 8.50).  The local Nokia Service Point said that nowhere in Europe is it possible to re-install the original Chinese software for this phone, so they installed European version 8.54.  This means I lost the ability to either display or enter Chinese characters.  (Furthermore they didn't accept the still valid warranty that was given for this phone in China ... )
    Is it really true that Nokia Service Centres in Europe cannot install the original Chinese version of the software on the phone?  Is it true that Nokia won't provide this version for them?  Furthermore is it true that the warranty is only valid where the phone was purchased, not in other countries?
    The loss of Chinese functionality is very annoying.

    Also: It is usually the case with consumer electronics that the warranty is only valid in the country where the product was purchased.
    I.e., if you buy a phone in Italy, but live in Finland, you have to return the phone to Italy for warranty reports.
    That doesn't really make sense from a consumer's point of view, if it is still the same manufacturer that is responsible for the warranty repair costs (fixing the device or replacing it), but that's still how they operate (how laws and regulations in countries permit the companies to operate).

  • Is it possible to work with different languages in different applications?

    Hi,
    is it possible to work with different languages in different applications?
    To have f.e. Photoshop in English and Indesign in Dutch??
    Thanks!

    I am not sure about it that you can use different apps in different language in the same computer, however you can check the following links:
    http://helpx.adobe.com/creative-cloud/kb/change-installed-language.html
    Adjust the install language | CCM
    http://tv.adobe.com/watch/learn-creative-cloud/installing-multiple-languages-of-a-desktop- application/
    Regards
    Rajshree

  • Acrobat XI downloaded with different language

    I  mistakenly downloaded Adobe Acrobat Professional XI Pro with different language that I cannot understand. I want to change the language to English. Kindly note that the downloading was already finished. Please help.

    You may be able to change the language in Preferences.

  • A region with different language

    I want to use a region Dominican republic with different language not in spanish. but in english??? how do i put it back

    yes but when y put english in the languege and put dominican rep in fortmat it only has dominican rep (in spanish) an i want it in english for formats
    Perhaps it would help if you would explain exactly how you want your computer to behave. What exactly do you want to be in English? What do you want to relate to the DR?

  • Can we change the keyboard language that is displayed on iphone programatically i.e can we give user option to change keyboard to different language from application at runtime?

    Can we change the keyboard language that is displayed on iphone programatically i.e can we give user option to change keyboard to different language from application at runtime?

    Hi All,
    Please Update the Thread
    Regards
    Khanna

  • Keyboard with two languages

    i want to buy macbook air from us store but the problem they only offer keyboard with one language so my question is can i have keyboard with two languages(Arabic and English) with backlit keyboard.

    Nobody in these forums represents Apple or any store.  To find out if you can buy something, you need to contact the store directly yourself.  Try calling an Apple retail store and ask if they can make a special order for you.
    http://www.apple.com/retail/

  • Whatdoes it mean when the project I open has a red screen with different languages,media off line?

    I finished my movied. and then tried to move everything into a new file labeled TAJE files.  Now when I try to open the last version of the movie, I get nothing but 2 of the title clips and then every clip is a red one with different languages saying something about media off line?  I deleted old copies but thought that was ok?
    Pam

    Yes, if you have a completed DVD and just want to copy it then use disk burning software, not PRE. I use Nero and ImgBurn as my main burning applications - Nero is commercial, ImgBurn is free.
    If you want to make extra copies over time you would be better to copy the VIDEO_TS folder from your DVD to your Hard Disk and then point ImgBurn at the folder.
    For new projects requiring multiple DVDs to be burnt you would be better during Share to burn it to disk. Again, once it's there you can just point ImgBurn at it.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Parsing XML file with different languages (Xerces)

    How do we code or program to an XML file with different
    languages , say english and spanish. WHen we parse such a document with the default locale , the presence of special characters throws errors .For eg when I use xerces and use
    DOMParser parser = new DOMParser();
    try
    // Parse the XML Document
    parser.parse(xmlFile);
    catch (SAXException se)
    se.printStackTrace();
    org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xfc) was found in the element content of the document.
    System Error:          void org.apache.xerces.framework.XMLParser.parse(org.xml.sax.InputSource)
    So what locale do we set before we parse ?How to handle this problem

    You need an encoding attribute in the xml declaration. If you don't, the parser assumes UTF-8, which are ASCII characters up to 127 - useful (only) for English.
    So, something like this would allow you to use characters above 127, ISO-8859-1 is the encoding used by standard PCs.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    You can find a (offical) list of encodings at:
    http://www.iana.org/assignments/character-sets
    I'm not sure about mixing various encodings. I think you have to resort external parsed entities, which can have their own encoding, but I think you cannot mix encodings in one XML file.
    Good luck.

  • Alu bluetooth keyboard with iMac / Battery issue

    How do you turn off the power on a new alu bluetooth keyboard used with iMac 20" alu?
    I don't know if this is the right place to post it, but my original batteries lasted 3 days, while replacements only 4 days with moderate use only. I've used the previous keyboard (white) where batteries lasted almost two months (it used four batteries instead of three, but C'MON!!).
    The old keyboard had a switch, this one has a side button, but I don't think I am actually switching it off if my average lifetime is 84 hours!
    Help please?

    There should be a button on the opposite end of the tube that you put batteries into. BUT you might want to exchange your keyboard - something sounds wrong with it. I have a wireless keyboard/mouse with my AlumiMac and after one and a half months the origianl set of batteries still show 4 out of 5 bars under System Preferences and I never turn my keyboard off.

  • Do Apple offer wireless keyboards with Thai language characters in the UK?

    Can't see them in the store. I assume they produce one for Thai customers. I need one for Uni this year and I'm not keen on stickers.

    Oh dear, that is annoying! I tried searching on Amazon, but the best they have is English keyboards with Thai characters on them =/
    If I find anything, I'll be sure to tell you

  • Description not displayed when loged in with different language

    Hi
    We have created some queries Loging in english language . When we use a different language for logon  say Portugese 'PT' the discription of the query is not dispalyed instead the technical name is displayed. This issue is same for all objects ( Infoproviders , Infoobjects etc .) .Is there any setting that should be maintained so that the object's description created in one language can be seen by login in with a different language .
    Thanks in advance,
    Biyaz

    yes I also working fro dutch clients
    and they have develped everything in Dutch language
    so whn I log on in En language I don't see desccription in English.
    there is no setting by which u can see description of custom object. but for standard object we are able ti see description in English language
    assign points if useful

  • Video with different language audiotracks

    Hi,
    do someone know a way to solve this problem:
    I want to produce a video for an mobile app, which comes with three different languages.
    The aim is, that there shall be one video and three different language audiotracks in the app. When the user chooses his language, the video shall play with his chosen language track. When he chooses another language, the same video shall play with the other language.
    So, the videofile and the audiotracks exist independently in the app. I want NOT to put three complete versions of the video in the app, but only one videofile which shall be combined in runtime with the audio, after the user chooses his language.
    Maybe there is a way...
    Thanks
    Markus

    Hi Markus,
    In Captivate 6 we have an option in the On Success Actions to "Play Audio",
    So you can have just one video and three audio tracks, and 3 buttons which on click plays the corresponding audio..
    If you dont have Captivate 6, then you might have to associate each audio to an object (say highlight box with transparency) and then hide or show the object when you click on the button,
    Please let me know if you want more detailed steps on this..
    regards,
    Hari

  • I can't type with different language?

    I'm trying to insert a text into my video in different language, but for some reason, it shows up as a box with "X" mark on it
    do I need to download a language pack?
    help please! thank you!

    If this is what you are getting:
    then you have chosen a font that PrE's Titler cannot display properly. This was a Kozuka font (free version).
    Also, many Multi-national fonts will not display properly, and will default their display to Times or Arial. I have found many, that neither PS, nor Titler, can properly display, even if they are well-written. When that happens, I often opt for doing the work in Adobe Illustrator, then Placing the AI document into a Photoshop Custom Image, that matches my Project, letting PS Rasterize the Image.
    Good luck,
    Hunt

Maybe you are looking for

  • Upgrading to 10.8.5 killed my cMBP

    I have a late 2011 MacBook Pro 15", 16gb ram 2 hard drives SSD in primary and swapped my DVD for the 750gb that was installed when I ordered it. It has been rock solid since I purchased it, never an issue. The ram and hard drive arrangement has been

  • Regd : How to find Validity date for a user in central user system

    Hi Experts; I want to get the list of users with profile SAP_ALL  with following details like validity ,user type ,user name ,user id.. I can get through SUIM for each individual systems.Its very difficult to login to each system ,generate the report

  • Creation of the export data source failed

    trying to activate ods but getting this message that the creation of the export data source failed. and it also gives message that RFC Connection to source system is damaged===> no metadata upload Please can someone help me with this. Thanks in advan

  • MacBook Pro won't connect to WiFi after installing a new modem...

    WiFi set up fine on the other Mac in the house (MacBook Air) and on my Android phone (using WPS button on modem). I can find the network in the dropdown, but when I enter the password, it says "invalid"-even though it's correct. In the Network portal

  • ILife - Fresh Mountain Lion install

    I recently did a fresh install of Mountain Lion, without using my time machine. I have been manuelly transferring apps back to my Mac, but I get an error when I try to open Pages, Keynotes, and Numbers. I originally bought iLife in '07 when it was on