Cannot type the "@" character

Whenever I try to type the "@" character on one of the Macs in my office I get a modifier key beep and no character. I can't figure out why this is happening or how to fix it. This prevents me from logging on to my .Mac account from this computer. Any ideas? I already tried swapping keyboards with no relief. Must be a software setting somewhere.

I get a modifier key beep and no character.
Double check system preferences/speech and universal access to make sure this character has not been chosen as the trigger for some special function.

Similar Messages

  • Problem : "You cannot convert the character set"..Any suggestions?

    Hi All,
    I have this character inside my internal table, KOÇTAŞ YAPI MARK.TİC A.Ş. and it created a short dump on the program and it says "You cannot convert the character set". But this customer is already maintained inside the table KNA1..
    The code is like this one:
    REPLACE ALL OCCURRENCES OF '€' IN linebuffer WITH 'EUR'.
    TRANSFER linebuffer TO filename. "LENGTH bytes_to_transfer.
    the LINEBUFFER here is an internal table.
    I think conversion is the key here. Do anyone knows how to convert this thing? Or is it the Unicode system?  Could someone please help me to my problem?
    Thanks so much guys!
    Regards,
    Mackoy

    Hi,
    What i feel here is you are trying to pass  totla internal table at once.Internal table may have more than one record.Filename may string which can contain one row.
    So instead of that put the internal table into LOOP.
    DATA : v_string(200).
    LOOP AT  LINEBUFFER.
    Here your internal table may have non char data type.That is the
    main problem.
      Note : while concatenating all non char fields of LINEBUFFER
               should move to first to temporary char field and conatenate it
    CONCATENATE  LINEBUFFER-field1 LINEBUFFER-field2
      INTO  v_string.
    ENDLOOP.

  • I cannoT Type The lower case leTTer T on my iMac keyboard..

    I cannoT Type The lower case leTTer T on my iMac keyboard..

    Open the Speech pane of System Preferences and check whether either the listening key or the speech key has become set to that keystroke; if so, change the setting.
    (63920)

  • Cannot type the letter "t" when phone is in portrait orientation. will only work when phone is in landscape.

    cannot type the letter "t" when phone is in portrait orientation. will only work when phone is in landscape.This causes some problems as some apps do not change orientation so when the "t" is needed to be entered it cannot be carried out

    Try the basic troublshooting steps described in the User Guide, Appendix B:  Resart, Reset, Restore using backup, Restore as new.

  • How can i sync my iphone when my screen is smashed and i cannot type the passcode?

    i smashed the screen to my iphone 4 and i cant sync to my itunes because it keeps asking for my passcode, which i cant type because my touch pad won't work. i need to erase my phone of all my info before i sell it, how can i go about doing this if i cannot connect it to my itunes? even if i can erase it without connecting to my itunes, i'd still like to recover some info so if anyone can help me sync my phone i'd be really grateful!

    When you sync an iPhone to the same computer it was last synced to it will not require the passcode. If you never synced it to any computer, or you don't have the last computer you synced to, you are out of luck.

  • Cannot type the char 'a' in terminals

    Hello
    I am pretty new to Arch, and under-the-hood Linux, since I mostly have used Debian, Mint and some CentOS. I have now installed Arch 64-bit on my Dell Vostro 1720 laptop, and I have set no-latin1 as my keyboard map during installation, and I have added setxmbmap no (no-latin1 didn't work, can post error later) in Openboxs autoload.sh (Right name? not booted into arch now). Everything works and I have  æ, ø and å on my keyboard both in terminal and in X as I am supposed to have. The only thing is that I am unable to type a in the terminal, both without X and in different terminal emulators like xterm and Gnome terminal. 'A' works though.
    I am pretty stuck after some reading and searching on google. The button only beeps when I press it. It also worked before I changed my keyboard map in X to no I think. Anybody who has any ideas?

    KeyPress event, serial 40, synthetic NO, window 0x1000001,
    root 0x121, subw 0x0, time 1826095, (161,136), root:(286,514),
    state 0x0, keycode 38 (keysym 0x61, a), same_screen YES,
    XLookupString gives 1 bytes: (61) "a"
    XmbLookupString gives 1 bytes: (61) "a"
    XFilterEvent returns: False
    KeyRelease event, serial 40, synthetic NO, window 0x1000001,
    root 0x121, subw 0x0, time 1826239, (161,136), root:(286,514),
    state 0x0, keycode 38 (keysym 0x61, a), same_screen YES,
    XLookupString gives 1 bytes: (61) "a"
    XFilterEvent returns: False
    KeyPress event, serial 40, synthetic NO, window 0x1000001,
    root 0x121, subw 0x0, time 1827449, (161,136), root:(286,514),
    state 0x0, keycode 39 (keysym 0x73, s), same_screen YES,
    XLookupString gives 1 bytes: (73) "s"
    XmbLookupString gives 1 bytes: (73) "s"
    XFilterEvent returns: False
    KeyRelease event, serial 40, synthetic NO, window 0x1000001,
    root 0x121, subw 0x0, time 1827554, (161,136), root:(286,514),
    state 0x0, keycode 39 (keysym 0x73, s), same_screen YES,
    XLookupString gives 1 bytes: (73) "s"
    XFilterEvent returns: False
    Thats my ouput, based on the 'a' and 's' buttons, so it is posible to compare to a button that works. I am not sure, but I can't find anything wrong?
    Thanks for you answer btw
    Edit: Fixed code tag instead of quote tag
    Last edited by Hakon (2011-04-27 13:35:34)

  • Cannot type Traditional Chinese

    I am using the newest version of Firefox for android. I cannot type the Traditional Chinese correctly in any banks in the browser. it is quite inconvenient when using the Google search engine for searching Chinese keywords.
    My device is Sony Xperia Z . Thank you for your help.

    I am using the default Sony keyboard. I type the Traditional Chinese by the method of Stroke (CJKV character), which is called "筆劃" in Chinese.
    Actually, I found the same problem in my Samsung Galaxy Note 10.1.
    Thank you for your help.

  • Jaxp fails to unmarshall xml document if it contaions the "&" character

    Hi,
         We are using JAXB in our applications and have recently experienced a problem
    with parsing of xml document ( when calling unmarshall method of jaxb ). The problem occurs
    when the xml element contains the character & in it f.eks. "Hennes & Maiurets" then it fails to parse
    the xml document. We would be very greatful if you could suggest us any workaround.
    Thanks in advance
    Sazzadul

    That's because it's not an XML document. A well-formed XML document cannot contain the & character by itself in a text node, it must be escaped as &. XML parsers will do this automatically, but if you are producing your own XML via ordinary string output, you have to handle this escaping yourself. And the same goes for the other four markup characters.

  • I cannot type fourth pinyin on my macbook air

    I needed to type some things in chinese and i needed to type pinyin. I figured out that I can type pinyin using 'US. Extended'. I bought my macbook air in japan and the keyboard is japanese version. now, I cannot type the fourth pinyin ` pressing option and shift at the same time.what should i do?

    Try option + shift + _  . (bottom right corner key I think).

  • Cannot type shift-i

    i cannot type the capitol i.  Also the computer is making clicking noises from the speakers and responding very slowly.  At times, it acts like the return key is being held down.  What gives?
    John
    sys 10.5.8, Macbook Pro A1211

    How to remove and clean your Macbook Pro Keyboard
    Cleaning Macbook keys after a spill
    responding very slowly.
    How large is your hard drive and how much hard drive space do you have left?

  • I cannot type anything into the Google search field; each character typed brings up a list of suggestions below the search field, but nothing appears in the search field itself.

    When in Mozilla and I bring up Google, the search field appears but the cursor does not blink as it ordinarily would do. When I try to type a search string it doesn't appear in the search field, instead a list of suggestions appear depending on the character(s)

    Solved: This was caused by replacing the SegoeUI (Regular) true-type font. I have no idea what process or why that font was deleted, but finding the segoeui.ttf file on another Windows machine, emailing it to myself, saving it to disk, then right-clicking and choosing "Install" fixed this problem.

  • Name cannot begin with the '\"' character, hexadecimal value 0x22

    I am trying to create Calculated Column in SharePoint Document Library using Client Object Model.
    However getting following error while executing FieldSchema:
    Name cannot begin with the '\"' character, hexadecimal value 0x22
    Code:
     var calculated = "Calculated";
     var displayName = "Effective Date";
     var internalName = "Effective Date";
     var formula = "=IF(ISBLANK(Col_DocumentEffectiveDate),\"\",TEXT(Col_DocumentEffectiveDate,\"DD-Mmm-YYYY\"))";
     List lib = clientContext.Web.Lists.GetByTitle(docLibName);
     clientContext.Load(lib);
     clientContext.ExecuteQuery();
    string fieldSchema = "<Field Type=\"" + calculated + "\" DisplayName=\"" + displayName + "\" Name=\"" +internalName+ "\" Formula=\"" + formula + "\"
    />";
    lib.Fields.AddFieldAsXml(fieldSchema, true, AddFieldOptions.AddFieldInternalNameHint);
    clientContext.ExecuteQuery();
    Code does't work if i replace quotation marks("\) in Formula with "&quot;"
    Could someone help with issue?

    Hi,
    I suggest you take the code below which works in my environment to do the test again:
    ClientContext clientContext = new ClientContext("http://sp/");
    List list = clientContext.Web.Lists.GetByTitle("List2");
    FieldCollection fields = list.Fields;
    clientContext.Load(fields);
    clientContext.ExecuteQuery();
    var displayName = "Cal2";
    var formula = "=IF(ISBLANK([Created]), \"\" , TEXT([Created], \"DD-Mmm-YYYY\"))";
    var fieldSchema = "<Field Type='Calculated' DisplayName='" + displayName + "' ResultType='Text'><Formula>" + formula + "</Formula></Field>";
    fields.AddFieldAsXml(fieldSchema, true, AddFieldOptions.DefaultValue);
    clientContext.ExecuteQuery();
    Feel free to reply if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • I downloaded mountain lion and then the new office suite (word, ppt, excel) but now when I try to display one of my ppt's it says 'ppt cannot open the file...the file may be corrupt, in use, not a type recognized by ppt etc.." how can I fix it?? HELP

    I downloaded mountain lion and then the new office suite (word, ppt, excel) but now when I try to display one of my ppt's it says 'ppt cannot open the file...the file may be corrupt, in use, not a type recognized by ppt etc.." how can I fix it?? HELP

    Did you try to open teh fle by double-clicking its icon? If the file was made with an older version of Office, you may get that message. Try opeing PP and, from its "File" menu, see if you can open the ppt. I've foundthat often gets around that message and then yo ucan save the file from the newer version.
    If that doesn't work, consider asking in the Microsoft Office: Mac forums here:
    Office for Mac forums
    PowerPoint is not an Apple product and it seems a lot of people around here avoid Office.

  • While using a drop-down menu i.e. File, edit, image, or even when saving as and choosing the file type; the list appears and I am able to highlight what i want but cannot click on anything.

    While using a drop-down menu i.e. File, edit, image, or even when saving as and choosing the file type; the list appears and I am able to highlight what i want but cannot click on anything. This is becoming incredibly frustrating. It happens at random time and a restart of the computer is all that helps, then with out any notice it starts to do this again.  Mac Book Pro i7 2.2 16 GB 1333 Ram, (2) 450GB SSD both internal to machine. At this point I am losing file because I am unable to save in the file type I need. Does anyone out there know how to solve this issue?
    Thanks
    phil

    I haven't been unify photoshop much in the past month, but I did try your suggestion and it seemed to work for a while. Today when i went to save a document the same thing happened: click on file>save at this point I can not click on save even though it is highlighted. Tryed to use command s that brings up the save dialogue box, but when I try to change file type I again cannot select it from the drop down menu.

  • 2013 Exchange, Can't connect to Exchange Management Shell. It cannot determine the content type of the HTTP response from the destination computer.

    The following error occurs.
             Welcome to the Exchange Management Shell!
    Full list of cmdlets: Get-Command
    Only Exchange cmdlets: Get-ExCommand
    Cmdlets that match a specific string: Help *<string>*
    Get general help: Help
    Get help for a cmdlet: Help <cmdlet name> or <cmdlet name> -?
    Show quick reference guide: QuickRef
    Exchange team blog: Get-ExBlog
    Show full output for a command: <command> | Format-List
    Tip of the day #0:
    Did you know that the Identity parameter is a "positional parameter"? That means you can use:
     Get-Mailbox "user" instead of: Get-Mailbox -Identity "user"
    It's a neat usability shortcut!
    VERBOSE: Connecting to mail1.dorothy.local.
    New-PSSession : [mail1.dorothy.local] Connecting to remote server mail1.dorothy.local failed with the following error
    message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from
    the destination computer. The content type is absent or invalid. For more information, see the
    about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : -2144108297,PSSessionOpenFailed
    Exception calling "GetComputerSite" with "0" argument(s): "The Specified directory object cannot be found."
    At C:\Program Files\Microsoft\Exchange Server\V15\bin\ConnectFunctions.ps1:164 char:2
    +     $localSite=[System.DirectoryServices.ActiveDirectory.ActiveDirectorySite]::GetC ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ActiveDirectoryObjectNotFoundException
    Failed to connect to an Exchange server in the current site.
    Enter the server FQDN where you want to connect.: mail1.dorothy.local
    VERBOSE: Connecting to mail1.dorothy.local.
    New-PSSession : [mail1.dorothy.local] Connecting to remote server mail1.dorothy.local failed with the following error
    message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from
    the destination computer. The content type is absent or invalid. For more information, see the
    about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : -2144108297,PSSessionOpenFailed
    Randy Cheek

    Good Morning,
    Log into the server with an account that has appropriate Exchange rights, not a local account.  
    Note: By default - Domain Admins don't have Exchange rights.
    Dame Luthas, ITILv3, MCSE Messaging 2013, MCSA, MCITP
    My Technical Blog: http://thelifestrategist.wordpress.com
    Discipline is the Difference between Goals and Accomplishments
    If this post is useful, please hit the green arrow on the left & if this is the answer hit "mark as answer"

Maybe you are looking for

  • Best practice for Spark repeating background image in a SkinnableContainer?

    In my old Flex 3.5 code I would accomplish this by dropping an Image into a Canvas and hitting the Canvas with some css style stuff to get the repeat.  The Image tag had a source property that would take a web address so I could dynamically grab diff

  • Can't open iTunes - has error message - Hope someone might be able to help

    I had everything working about two weeks ago. I was able to download my CD's on the Nano.. Then my computer had to be reloaded with XP.. Lost iTunes..... I reinstalled it at least three times, but it will not work, even downloaded the new edition....

  • FI Vendor marked for deletion

    Hi All, I wanted to know if i have marked a vendor for deletion and all the post has been blocked then will i be able to do the payment? I am technical consultant so not much knowledge on FI module. Can anybody tell me the tcode also related to this.

  • Planning web form issue in 11.1.2

    Hello folks, i am having problem with the opening webform in planning it is taking morethan 1 min to open compared to the version 9. do anyone have suggestions for me to get rid off from these issue Thanks in advance Puli

  • RESULT_TABLE

    hi,    i have aproblem i have filled the result table in routine but even then i am getting a single record could u pls rectify this problem code: $$ begin of global - insert your declaration only below this line  - TABLES: DATA:begin of itab occurs