Need help re-assembling Fn key

I took my Fn key off to clean out some crumbs that fell underneath and I'm having trouble figuring out how to put the plastic pieces underneath back on correctly.
Does anyone know from experience how to put these together correctly, or know of documentation that would cover something like this? I don't live near an Apple Store. I can describe the pieces better if necessary but I assume that anyone who knows how to do this would not need that description.

I think one of these should be what you're after:
http://www.thebookyard.com/images/manuals/keyreplace.pdf
http://www.powerbookmedic.com/Manuals/Apple-Key-Replacement.pdf

Similar Messages

  • Hi i need help one of my key on the keyboard dosen't work for some reason please help

    hi i need help one of my key on the keyboard dosen't work for some reason please help

    try smc reset
    http://support.apple.com/kb/ht3964
    and Pram reset
    http://support.apple.com/kb/ht1379
    (Try pram a few times to get correct sequence)
    Check what you have selected in
    system preferences/system/accessibility/keyboard
    and system preferences/hardware/keyboard  (keyboard and keyboard short cuts tabs)

  • Need help with adding a Key flex field to a seeded OAF page

    We have a seeded OAF page on which we already have Account Key Flex Field.
    Properties of this flex field are:
    The ApplShortName - SQLGL
    Name - GL#
    Type - Key
    As per the client requirement, in the KFF screen, we have disabled the seeded structure for Accounting Flexfield and created a custom structure.
    Our custom structure for the KFF is displayed correctly on the OAF page.
    But now the requirement is to add a new KFF on the OAF page which is duplicate of the existing KFF, along with the existing KFF field; the structure and segments are same. Only difference being the display name of the existing KFF field is Account; the new one needs to be Tax structure.
    Using personalization we added a new flex item and added the properties same as the existing KFF.
    ApplShortName - SQLGL
    Name - GL#
    Type - Key
    But the page is giving following error:
    The data that defines the flexfield on this field may be inconsistent. Inform your system administrator that the function: KeyFlexfieldDefinitionFactory.getStructureNumber could not find the structure definition for the flexfield specified by Application = SQLGL, Code = GL# and Structure number =
    We tried options like compiling the flexfield definition, but the error persists.
    Any help in this regard is highly appreciated.
    Regards,
    Kiranmayi.

    Hi,
    Please check whether your key flex structure is frozen or not. If now please freeze it and re compile and try.
    This may helps too
    error while developing KFF in oaf
    Thanks
    Bharat
    Edited by: Bharat on May 10, 2013 4:51 AM

  • Need help with locating a key using a value in a HashMap.

    I am quite new to Java and programming, and am just learning this in High School (enjoying it thoroughly). Sorry if I don't respect the etiquette or formatting of this board (it's unintentional).
    I am using the book, Objects First Wth Java A Practical Introduction Using Blue J and am working on extensively improving the "World of Zuul" project. Which is a text-based adventure game.
    Here is a code sample;
    public String getNameFromList(String name)
      boolean found = false;
      Set pairSet = xItemList.entrySet();
      for(Iterator iter = pairSet.iterator(); (found == false && iter.hasNext());){
      Item currentItem = (Item) iter.next().getValue();
      String currentKey = currentItem.getName();
      if(name.equals(currentKey)){
        String changedName = iter.next().getKey();
        return changedName;
    error; cannot resolve symbol:
    method: getValue()xItemList is a HashMap with String keys, and Item values.
    The relevant field of Item is name, which is a string.
    The currentKey local variable is a little misleading, it is the current name, but acts as the 'key' when looking for the actual key.
    changedName (if the parameter name is found from the item.getNames()), is what the method returns, the key associated with a object (by looking at the object's field).
    My objective for this method is for it to have a name as a parameter, which it searches for in the HashMap (by Iteration over the entrySet - or I suppose iteration over Set values(), but this loses which object value is tied to which key, doesn't it?), and returns the respective key.
    Any help would be very much appreciated (even if it is telling me that this can't be done with HashMaps!).

    It's not clear to me what your question is, or if indeed you even have a question.
    You seem to be having a problem with types. Iterators return Objects.
    So in this line:
      Item currentItem = (Item) iter.next().getValue();The iterator's next() method is returning an Object, and you're trying to call getValue() on that Object. But Object doesn't have a getValue() method. That would explain your error message. Map.Entry does; you apparently meant to call Map.Entry's getValue() method. You would cast the result of iter.next() to Map.Entry before you call getValue().
    Also you're calling next() on your iterator twice in the body of the loop, which means you're getting two different values... this is probably not what you intend.
    But you're making this more complicated than it needs to be anyway.
    Why are you iterating through the set of entries in the HashMap?
    The whole point of a Map is that you get an item using an object as the key. Just do xItemList.get(name). Right?

  • Need help in assembling DAC 'Subject Area':

    Hi There,
    When I assemble a subject area:
    I got a pop up window for 'Configuration Tags' with the following message:
    The tasks belonging to the following Configuration Tags may be applicable
    to assembling your subject area. If you want to associate these tags,
    press Cancel, otherwise press Continue.
    For this message, should I say 'Continue' or 'Cancel'.
    Also what happens when I say 'Continue' or 'Cancel'.?
    Thanks,
    Raghu

    Hi, DAC Configuration Tag controls the inclusion of tasks in subject areas. Each Configuration Tag will have tasks associated for specific biapps requirement.
    By Default BIAPPS OOTB Subject Areas will have Configurations tags associated and few will be in inactive state.
    (Click on any DAC SubJect Area --> ConfigurationTag (in the bottom pane) to verify which Configuration Tags are associated )
    1. This message is just a reminder that DAC tells you, there are few other tasks that can be included in the Subject Area and here are the Configuration Tags associated to these tasks. In case if you forget adding them hit 'Cancel', add it and then Assemble again
    2. In all other cases if you don't need to add these Configuration Tags you can hit Continue to complete assembling the Subject Area
    It all depends on the requirement and which tasks you need to include or exclude from specific Subject Area.
    Before Assembling verify if you need to include any Configuration Tag , activate it and then hit Assemble.
    Eg: In BIApps Configuration topic : To Reload the Time Dimension Tables After the Data Warehouse Is Loaded
    1. To extend the Day Dimension, you should include configuration tag named *'Extend Day Dimension Multiple Calendar Support.'* which adds additional specific tasks . Then assemble the Subject Area
    Hope This helps !

  • Need Help to delet sort key! Please help!

    Hi,
    I have a problem in the following program.
    Source Code:
    t-belnr  = bsid-zuonr.
    SPLIT t-belnr at '#' into wk_belnr wk_x_belnr.
    CLEAR t-belnr.
        t-belnr  = wk_belnr.
        t-xblnr  = bsid-belnr.
        IF t-belnr NE space.
          s-belnr      = t-belnr.
        ELSE.
          t-belnr      = t-xblnr.
          s-belnr      = t-xblnr.
        ENDIF.
    IF t-xblnr NE space.                                    "WD041005a
          s-xblnr      = t-xblnr.                               "WD041005a
        ELSE.                                                   "WD041005a
          s-xblnr      = t-belnr.                               "WD041005a
        ENDIF.                                                  "WD041005a
        WHILE s-xblnr(1) EQ '0'.                            "INS MG130606
          SHIFT s-xblnr LEFT.                               "INS MG130606
        ENDWHILE.                                "INS MG130606
    In the final ALV.
    If first colum (t-zuonr) (sort key for the document )is blank, the document need to be deleted.
    Question:
    How can I write the code to deleted the t-zuonr when it is space?
    Please help!!!
    Thank you!!

    Try as below:
    DELETE <itab> WHERE <fld> IS INITIAL.
    i.e
    DELETE t WHERE zuonr IS INITIAL.
    Kind Regards
    Eswar

  • I need help changing the security key for WRT54G2 1.5

    I already know the security key on my network, I just need to change it.  I don't have 'cisco connect'. I've tried the web based method with the 192.168.1.1 IP and using 'admin' for the password, but that gives me a '401 Not Authorized' error.  I've tried using my own security key instead of 'admin' and that doesn't work either.   How do I change this.  I tried to use the Linsky's knowledgebase and that didn't help. Live Chat won't help unless I'm willing to sign-up for some paid service plan, and there is no way I'm doing that.  I've never heard of a company charging their customers just to explain how to do something. All I have is a simple question about how to change the network security key when I already know what it is and there is no problem with the connection. Can anyone help me.  PLEASE.

    If admin didn’t work, it’s possible that you might have setup a different password to login to the setup of the router when you initially set it up. Since admin and your security key didn’t work when you tried accessing your router page, the other option for you then is to reset the router. Push and hold the reset button on the router using a pin or a paper clip for 30 seconds and unplug the power cord for another 30 seconds. Once the power light goes solid, you may start reconfiguring the settings of the router. For instructions, refer to these links: Setting up a Linksys router with Cable Internet service & Setting up a Linksys router for DSL Internet connection. Once you establish the wired internet connection, you may then start reconfiguring the wireless settings. Go to the Wireless tab: set the wireless configuration to manual; set a network name; then save the settings. Once saved, click on Wireless Security subtab:  set the security mode to WPA2 Personal and enter a new security key on the passphrase bar.

  • Need help to map a key in hashmap

    hi guys,
    I want to find a value from hashmap.
    But the key should be matched a regex.
    I want something like...
    hashmap.contains(regex key)Thanks in advance...

    Dhaval.Yoganandi wrote:
    But I dont want to iterate through all the keys...Then stop as soon as you've found one.
    Edit: Why don't you want to iterate through all the keys?
    is there any other solution ? Otherwise I've to go for iteration..Not really. You could store your data in a different data structure that is more useful for searching for regex, but all solutions will come down to linearly searching through all (or some) elements and checking the regex.
    If you don't really need the full power of a regex, then you might find a better datastructure, for example using a Trie for prefix-matching.

  • Need help in reassigning 'fn' key to be a command [apple] key

    Hi everyone,
    I have a Japanese keyboard-ed Powerbook 12". I would like to reassign the fn key to function as a command/apple key, primarily for web browsing. I tried adding a keyboard shortcut just for Safari but it wouldn't work and I am ont sure what I am doing wrong.
    The Japanese keyboards only have one command/apple key (on the left side), and it would be nice to have one on the right side instead (close to the arrow keys).
    FYI, the keyboard layout on the right side is currently:
    [kana-switch to JP key] [fn] [enter] [arrow keys]
    Thanks for any help!!

    Hi Nate --
    I'm not certain (in fact, the more I look at it I kind of doubt it), but maybe DoubleCommand might help you do what you want, or at least something approximating that.
    I'll keep looking, but it's the best I can come up with right now.
    -- JDee

  • Need help in Assembler service

    I installed Adobe Livecycle ES3 with WAS. I'm able to login to the adminui but could not see assemblerservice option under home->services->applicaiton and services->service management and then selected category as Common. Could you please let me know the steps to get the assembler service displayed in the list ASAP?
    Thanks in advance!!
    Bhargavi.

    No, Please look in <Installationfolder>\Adobe\Adobe LiveCycle ES3\deploy for jar adobe-assembler-dsc.jar. If its there, then connect to your server with work bench and install this jar through components tab in workbench. Workbench is the client for connecting to a livecycle server.
    You can get help for installing dsc via workbech under "Impot your component"  heading at the link http://www.adobe.com/devnet/livecycle/articles/dsc_development.html

  • Need help ball rolls but keys are locked

    My ball rolls but cant get the keys to do anything.
    Tried taking the battery out and then putting it back in but that didnt fix the pronlem..... any ideas??????

    rick123 wrote:
    My ball rolls but cant get the keys to do anything.
    Tried taking the battery out and then putting it back in but that didnt fix the pronlem..... any ideas??????
    Hi and welcome to the forums!
    See if this helps and do the battery pull as listed.
    Let us know how it goes!
    Thanks,
    Bifocals
    KB17877 How to start a BlackBerry smartphone in safe mode
    No data will be lost when doing the following: pull the battery while the device is ON.
    Replace after a minute, Let the device reboot 1-3 min, see if the problem is fixed.
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Need help with Diffie-Hellman key-exchange protocol

    How can i show that the Diffie-Hellman key-exchange protocol is vulnerable to a man-in-themiddle
    attack and Devise a protocol using digital signatures which overcomes this vulnerability

    Given that the error is "Invalid Parameters", you might want to show us how "dhparameters" is being set up on both sides...
    Grant

  • Need Help Quick Regarding Quick Keys!

    What is the command to splice a audio file into 2 pieces?

    I know about the sissor tool already, but thanks...I want to know the keyboard command.
    Powerbook G4 (1.33 Ghz, 2 Gig RAM)   Mac OS X (10.4.7)   Final Cut Studio 5.1, Shake 4.1, Avid Xpress Pro 5.5

  • [SOLVED] VIM - need help with keymapping

    As the header says, I need help with creating a key mapping in my vimrc. What I would like is a
    mapping to<F8> that would toggle between " :set paste and :set nopaste. " Any and all help
    would be appreciated
    Last edited by orphius1970 (2010-03-02 07:50:22)

    YES!!!!  Thank you! Exactly what I was hoping for. I am new to vim so all these config options
    are a little intimidating for now. Thank you again!!!!

  • Need help in activation a license key in CCT. It works as a trial now

    Need help in activation a license key in CCT. It works as a trial now

    1st the sata drive cannot be listed as a slave drive to the ide master [key word=ide-can be configured as master OR slave, master IF only 1 hd, master and slave IF 2 hds], on the sata controler you can have master and slave, the ide cable has two connectors for the hds, sata has only 1 hd connector.
    are you wanting to install the sata as primary master and move the operating sys to that drive, if so you will need an IMAGING software to move an operating system OR you could do a fresh operating system install to the sata drive then install your programs.

Maybe you are looking for

  • How to open Mail attachment in different spaces

    With Snow Leopard Mail attachment stopped to open in the space to witch I assigned the related application, but keep on opening in the Mail space. I have Mail assigned to space #1 and, for example, iWork assigned to space #3. With Leopard iWork attac

  • Error When Trying to Access Root Partition From KDE media:/

    Hi! My other partitions mounts fine and i can browse through all of them manually(from console). The only problem is my first partition hda2 which gives a "Permissions Denied" error when I click on it even though I'm currently in root. Here's my /etc

  • Flash archive on solaris 8/9

    Hello, I have a nfs server containing flar image but this box is not a boot server. I need to boot from CDROM and recover OS from a flash archive server (NFS). I have all the files in place too. what command do i need to run from the ok prompt of the

  • PHP Form Scripting

    Please can someone help. I have created a form for a website that needs to do the following: 1/ Be completed and submitted 2/ On submission show a confirmation page to the customer. and 3/ Send an e-mail from the website and not from their own e-mail

  • PC + Xbox 360 for students

    I realize this question has been asked in several places throughout this and other forums, however I have been unable to find an answer so far.  I bought a PC at Best Buy after this promotion began back in May, however the sales team at this particul