How Can I Cahnge The Shortcuts Of The Function Keys (F1.. F12)

Hi,
(Sorry I don't speak English well.)
Recently, I've changed my keyboard and I've change my hard drive. The new keyboard has a different function Keys shortcuts, for example F11 doesn't decrease volume it makes the web page fullscreen. I don't know if the change was because of the new hard drive or because of the new keyboard. I need to change all of them to make them do the same function of the key symbol.
The other thing is this key ] when I press on it, it makes Caps lock be ON, and if I press on it again, it makes Caps lock be OF. I want it to be like this ] when I press on it.
Hope you understood me and thank you for your help.
May

I'm not precisely sure about the situation with the ']' key. It sounds as if perhaps the keyboard doesn't match the language or region of the system. Without knowing more, the first place to go would be the Keyboard tab in the Keyboard preferences pane.
There are buttons there to set the type of keyboard connected, and also check the settings of the modifier keys, including 'Caps Lock', 'Shift', 'Command', and 'Option'.
As far as setting keyboard shortcuts for 'F' keys, if you go to the *Keyboard Shortcuts* tab in the Keyboard preference pane and click on the categories in the left column, you should be able to see current settings, and define new ones if necessary.
   !http://img228.imageshack.us/img228/5186/scottdartve1.png!

Similar Messages

  • How can I use the function keys in a GUI with swing?

    I'm wondering how do you declare you want an action to happen when a user uses a function key or any key for that matter. How can you specify something frame wide or for that matter for a specific jtextbox?

    you need to use an accelerator
    setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_A, java.awt.event.InputEvent.SHIFT_MASK | java.awt.event.InputEvent.CTRL_MASK)

  • How can i disable the Enter key in JTextArea?

    How can i disable the Enter key in JTextArea?
    When i press Enter key in JTextArea,I hope JTextArea do nothing.
    Thanks!

    HI, I've the same problem;
    uncle_alice solution works fine, but if I paste in textArea a multi-line text,
    this last results on more lines (rows);
    Isn't possible to avoid this?
    Alternatively, how can I disable cut/copy/paste on TextArea?
    Thank you in advance.
    MargNat
    Message was edited by:
    MargNat

  • How can we automate the Depreciation keys based on production for business

    How can we automate the Depreciation keys based on production for business u2013 this is currently not an optimised process if we expect business to manually change the keyu2019s on a monthly basis.
    The end user updates the table, transaction AO25, manually on month end after the production calculations are completed. The question is, is it possible when the PP is completed, that the system updates the Period Unit table for that period?
    Thanks.
    Regards,
    PS PS

    Hi,
    I am new at this, so I need a explanation on how will this help me, and how do I get about doing this?
    Thanks a lot.
    Regards,
    PS PS

  • I'm using LR 5.6.  The Enter key should increase the exposure but it increases Contrast instead.  How can I make the Enter key adjust the exposure?

    Hello
    As explained in the heading, I'm using LR 5.6 on a PC (Win 7).  The Enter key should increase the exposure but it increases Contrast instead.  How can I make the Enter key adjust the exposure, as it should?  I have reset the settings to Default in the Develop module but to no avail.  Please help!  Thanks.
    Kind Regards
    Farrukh Hyder

    I am not aware that the ENTER key should increase exposure, and it certainly does not increase exposure (or any other slider) on my Lightroom 5.6 (Windows 7)
    If you click on the word Exposure, then the + and - keys increases or decrease exposure by 0.1 or -0.1

  • How can I disable the control key?

    How can I disable the control key?
    My Controll-Key is permanently pressed.... i dont know why, please help me!

    Take it to an Apple store or dealer to get it repaired.

  • Is numlock still available in the Function keys (F1-F12)

    Hi all,
    I have to use the numpad very frequently, so I would like to know if there is any way I can use the numeric keypad in the new Macbook?
    Is the old numlock button still available in the Function Keys (F1-F12)?
    Thanks

    I'm not precisely sure about the situation with the ']' key. It sounds as if perhaps the keyboard doesn't match the language or region of the system. Without knowing more, the first place to go would be the Keyboard tab in the Keyboard preferences pane.
    There are buttons there to set the type of keyboard connected, and also check the settings of the modifier keys, including 'Caps Lock', 'Shift', 'Command', and 'Option'.
    As far as setting keyboard shortcuts for 'F' keys, if you go to the *Keyboard Shortcuts* tab in the Keyboard preference pane and click on the categories in the left column, you should be able to see current settings, and define new ones if necessary.
       !http://img228.imageshack.us/img228/5186/scottdartve1.png!

  • How can I obtain the primary key of a table for an entity relation?

    hello everybody
    I am doing a consultation to a table in my data base, good this table has alone two fields, the first one is the code or pk and the second one is the description, to be presisos they are names of city and code.
    From the beginning!!: This method this one in another class that is a Dialog that is going to call to the class SelecPlace ();
      SelecPlace sl = new SelecPlace();
    public void capturarLugar(){  //  Simple void method in the mentioned class
            String place = txtProcedencia.getText() ;  //  a JTextField
            sl.executeStatement(place) ;                  
        }ok, now we see part of the code of the class SelectPlace
    public class SelecPlace extends AbstractTableModel{
        Connection con = null;
        Statement sentencia = null ;
        ResultSet rs = null;
        ResultSetMetaData rsmd = null ;
        String[] nameColum = {} ;
        Vector datos = new Vector() ;
        public SelecPlace() { }
        public void executeStatement(String query){
          try{
             con = DBManager.getConnection() ;
             sentencia = con.createStatement(rs.TYPE_SCROLL_INSENSITIVE,
                                                                          rs.CONCUR_UPDATABLE) ;
             String sql = "select * from Place where descripcion like %"+query+"%'";
              rs = sentencia.executeQuery(sql) ;
              rsmd = rs.getMetaData();
              int nroColumnas = rsmd.getColumnCount() ;
              nameColum = new String[nroColumnas] ;
              //obtengo los nombres de columnas en cache
               for(int colum = 0; colum < nroColumnas; columna++){
                    nameColum[colum] = rsmd.getColumnLabel(columna + 1) ;
               datos = new Vector();
                while(rs.next()){
                    Vector newRow = new Vector();
                    for(int i = 0; i < getColumnCount(); i++){
                    newRow.addElement(rs.getObject("place_ID"));
                    newRow.addElement(rs.getObject("description"));
                    datos.addElement(nuevaFila);
                fireTableChanged(null);
            }catch(SQLException e){
                System.err.println(e);
                e.printStackTrace(System.err);
                System.out.println("error in statement");
            }catch(ClassNotFoundException cnfe){
                System.err.println(cnfe);
        }Ok, this code me works and I obtain in this case the field description of the table Place
    Now my question is, how can I obtain the primary field of my table?
    I need this value of this field that in the base of information in a bigint, and to take it to the first class before mentioned, for that I am working with a data base related

    Certain duffymo and everyone!!, good I give you my scheme:
    And generalizing my question, I want to obtain the value of the primary key of a table in the database, I obtain more values of the same row, but I need the primary key, and you see one with the primary key I want to turn a Long and it to insert with code java in foreign clave in another table of the database
    Good of this form I believe that it would not be breaking the integrity relacional of the tables

  • HOW CAN I KNOW THE FUNCTION CODE OF CREATE NEW SESSION

    <b>HOW</b> CAN I KNOW THE FUNCTION CODE OF CREATE NEW SESSION?
    THANKS...

    Hi
    Please put a "/n" (to open a new session after killing the current session)
    or "/o" (to open a new session without killing the current session)
    or "/i" (to end the current session) before the below T Codes as per your requirement...
    Try thistoo <b>O0</b>
    <u><b>demo-like programs</b></u>
    RSIMC000
    RSIMC001
    RSIMC002
    RSIMC003
    RSIMCTRX
    RSIMCTST
    Reward all helpfull answers
    Regards
    Pavan

  • How do we represent the functional keys in deferrent codes(ASCII or UNICOD)

    Hi,
    I want to send some commands though socket . I would like to know how to send the functional key codes . I have to send the commands that are in bytes or strings which contains functional keys (like F1 or F4) .
    can anyone send me the functional key codes .
    Thanks in advance
    prashanth

    You could look at the Unicode site yourself, it's at
    http://www.unicode.org/

  • How can I get the functionality of the old "Spaces" in Mission Control?

    How can I make Lion show a space number on the top of the screen so I can see which space I am in?
    How can I make Lion switch spaces in a ring? ie? 1, 2, 3, 4, 5, 6, 1, 2, 3,  ...
    How can I make lion switch directly to a numbered space?  ie: 1, 4, 5, 2, etc...
    Without these three capabilities Mission Control is a giant step backward....I am disappointed in the way it works and would liketo know how to disable it and give me back the way spaces used to work.
    Thank you.

    almost2good wrote:
    How can I make Lion show a space number on the top of the screen so I can see which space I am in?
    Currently you cannot.
    almost2good wrote:
    How can I make Lion switch spaces in a ring? ie? 1, 2, 3, 4, 5, 6, 1, 2, 3,  ...
    You cannot organise Mission Control's "Desktops" this way. They are organised in a single row to allow the swipe gestures to work. Apple allows no way to customise this.
    almost2good wrote:
    How can I make lion switch directly to a numbered space?  ie: 1, 4, 5, 2, etc...
    By deafult you should be able toi switch by pressing ctrl plus the desktop number, e.g. ctrl+1. This is the same as Spaces in Snow Leopard. You can customise this under System Preferences (Keyboard > Keyboard Shortcuts > Mission Control).
    almost2good wrote:
    Without these three capabilities Mission Control is a giant step backward....I am disappointed in the way it works and would liketo know how to disable it and give me back the way spaces used to work.
    A lot of people are disapointed with Mission Control. In my opinion it's a step backwards from Spaces & Expose in Snow Leopard but peoples views on this will depend if they used Spaces & Expose in Leopard/Snow Leopard and the type of Mac they are using - it makes some sense on a Macbook Air, for example, with a small screen and multi-touch trackpad but not so much on an iMac or Mac Pro (sames goes for Launchpad). I just hope Apple listens to the criticism and enables customisation options to change the way Mission Control behaves.

  • How can I use the enter key instead of tab to change field focus?

    I am using Acrobat 9 Pro.
    We have a fillable PDF where the users enter numbers into fields.  They want to be able to use the <enter> key on the 10-key pad instead of the <tab> key on the keyboard to move the focus to the next data entry field.
    How can I set my PDF so that it recognizes the <enter> key instead of the <tab> key for changing focus?
    Thanks!

    You can use a custom Keystroke script, something like:
    // Custom Keystroke script for text field
    if (event.willCommit && event.commitKey === 2) {
        getField("Text2").setFocus();
    Where "Text2" is the name of the next field. This doesn't disable the Tab key though. For more information, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.608.html

  • How can I change the input key language between different languages ?

    the language can't be changed when i press ctrl+alt

    The default keys to rotate the layout is a key combination (Ctrl+Shift or Alt+Shift) that can easily be used in Firefox to activate a menu item.
    It is better to disable the key sequence to rotate layouts (Alt+Shift or Ctr+Shift) to avoid an unintentional switch and instead assign a specific key (Alt/Ctrl + Shift + number) to switch to the keyboard layout.
    Control Panel > Regional and Language Options > Keyboards and Languages > Change keyboards > Advanced key settings > Change key sequence
    http://support.microsoft.com/kb/258824 - How to change your keyboard layout
    You can also use the Language bar on the Windows Taskbar.<br />
    You can make the Language bar visible via the right-click context menu of the Taskbar: Toolbars > Language Bar.
    * http://windows.microsoft.com/en-US/windows7/The-Language-bar-overview The Language bar (overview)

  • How can I hardcode the public key into my coding?

    Hi! I need to hardcode the public key into my program so can someone tell me how can i do it.
    Purpose:-
    I am trying to create a license file( signature file) and the public key in my product.

    Hi! Thank for your reply.
    I dont understand, but anywhere i get the solution already.
    Thanks.
    byte[] pubKey = pub.getEncoded();
                    String hexPubKey = toHexString(pubKey);
                    FileOutputStream pubKeyfos = new FileOutputStream("suepubk");
                    PrintWriter pwPubKey = new PrintWriter(pubKeyfos);
                    pwPubKey.write("PublicKey="+hexPubKey);
                    pwPubKey.close();the following method i got it from internet. I forget the link.
    private static String toHexString(byte[] block) {
            StringBuffer buf = new StringBuffer();
            int len = block.length;
            for (int i = 0; i < len; i++) {
                 byte2hex(block, buf);
    //if (i < len-1) {
    // buf.append(":");
    return buf.toString();

  • How can I cancel the function of 'block the photos of iw.suntekstore'?

    I have use the function of 'block the photos of iw.suntekstore' by mistake. Actually, I would like to see the photos from iw.suntekstore so how can I cancel it?

    Make sure that you are allowing all images to load and that images from specific sites are not being blocked:
    *In Firefox, look under "'''Tools''' -> '''Options''' -> '''Content'''" and
    **Make sure that "''Load images automatically''" is checked.
    **Open ['''Exceptions'''] and ''remove any sites being blocked''.
    Probably also:
    *Use '''about:config''' to make sure that the preference permissions.default.image is set to "1", the default value (right-click and select "Reset" if any other value is shown).
    More details:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load#Images_do_not_load

Maybe you are looking for

  • How to send an email from oracle?

    Hi I want to send email from oracle database. i have tried following procedure create or replace 2 PROCEDURE send_mail (p_sender IN VARCHAR2, 3 p_recipient IN VARCHAR2, 4 p_message IN VARCHAR2) 5 as 6 l_mailhost VARCHAR2(255) := 'aria.us.oracle.com';

  • Configured to Order Costing configuration

    Hi, I am looking to configure costing for Configured to Order. Can it be handled the say way as a regular production order with respect to costing variant and month end closing. Or, should this be configured under Product Cost by Sales Order. Would a

  • Who is determining object link for Contracts in SRM

    Hi all SAP Says The determination of object relations takes a long time.  This is indicated by the long runtime of the report "BBP_GET_STATUS_2", for example. If you use transaction SE30, for example, to view an ABAP trace, it displays a long runtime

  • Unknown number appearing in 5.1

    i have iphone 4s 5.1 and after i transfer my contact through my exchange acct, some of my callers are unknown numbers appearing but they are save in my list. how should i resolve it?? can someone help me? thanks and God bless!!!!  ^_^

  • Question from functional consultant

    Hi I was working on a report under report writer transaction code GR32. I was suppose to make a small change but actually I made lot of changes to fix one issue or other.Now the report is not usable.Is it possible for a basis guys to restore the orig