When I hit shift 2 it comes with a " symbol rather than an at symbol

It seems some of my symbol keys are acting up in firefox 13.0.1. The main issue is AT symbol, or shift 2. This is not happening in other browsers (ie) or anything else on my computer.

Windows remembers the keyboard layout setting per application and you may have changed the keyboard layout by accident via a keyboard shortcut.
See:
* http://windows.microsoft.com/en-US/windows7/The-Language-bar-overview The Language bar (overview)
It is possible that you have switched the keyboard layout by accident.
* Make sure that you have the Language bar visible on the Windows Taskbar.
* You can do that via the right-click context menu of the Taskbar: Toolbars > Language Bar.
* Check the keyboard language (keyboard layout) setting for the application that has focus via the icon on the Language bar.
* You need to do that while Firefox has focus because Windows remembers the keyboard layout setting per application.
* The default keys to rotate the layout is a combination (Ctrl+Shift or Alt+Shift) that can easily be used in Firefox to activate a menu item.
* To avoid an unintentional switch, assign a specific key sequence (Alt/Ctrl+Shift+number) to select keyboard layouts and remove the key combination to rotate layouts (Alt+Shift or Ctrl+Shift)
* 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

Similar Messages

  • When I was updating my ipod touch 4g 8g 4.3.3 the USB came out and now it just shows connect to itunes and when i try to update it comes with error 6. I do all of the help things and nothing

    When I was updating my ipod touch 4g 8g 4.3.3 the USB came out and now it just shows connect to itunes and when i try to update it comes with error 6. I do all of the help things and nothing happoned

    First see if placing the iPod in Recovery Mode will allow a restore.
    Next try DFU mode and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    If not successful then time for an appointment at the Genius Bar of an Apple store. You are not alone with this problem.

  • I just bought v10.7lion but when I try to install it comes with this error message:"Install Failed"...try to install again. Now I've been restarting over and over again.  What should I do?

    I just bought v10.7lion but when I try to install it comes with this error message:"Install Failed"...try to install again. Now I've been restarting over and over again.  What should I do?

    JPPI-
    Did you try it with the iTunes your Mac already has?
    Try running Software Update in your System Preferences.  That should bring your computer up to the latest software available for 10.4.  You would end up with an older version of iTunes, but that may be good enough to activate your iPad.
    Fred

  • I have just bought a MacBook Air in Madrid, but the keyboard types ç when I hit -, for example, when I hit shift for the bracket sign I get *. How can I re-set it to type what I see on the keys.

    I have just bought a MacBook Air in Madrid, but the keyboard types, for example, ¿ when I hit shift and the semi-colon key, and = when I hit the ! key. What do I have to do to reset it to function normally?

    Go>Preferences>Language & Text>Input Sources
    Click off the flags of the countries you want--like if you need a British keyboard that has a British pound symbol, pick that one.
    When you're done picking, them leave preferences. Now, in the upper right-hand corner of your computer, next to the date, you'll see a little flag. Click on that. You'll see all the flags you picked. Choose the one you want. Your keyboard will now give you the symbols, letters, etc. that you would get if you'd bought the computer in that country.

  • After installing Mavericks my iMac opens with the "rolling surf" desktop. I can then start my preferred desktop from a saved 'photo but when I retsart the iMAc it reverts to "rolling surf". How can I get it to remeber to open with MY choice rather than Ap

    After installing Mavericks my iMac opens with the "rolling surf" desktop. I can then start my preferred desktop from a saved 'photo but when I retsart the iMac it reverts to "rolling surf". How can I get it to remember to open with MY choice rather than Apple's?

    I did a little research on this, as I found some strange things with the .plist files.
    It appears that Apple has changed the way that the plist files are handled, and there is now an extra step in the trashing-the-.plist-file fix:
    1. hold down the option key
    2. in the Go menu in the Finder, scroll down to Libary
    3. in Library, find Preferences
    4. in Preferences, find  com.apple.desktop.plist  and drag it to the trash.
    5. go to Applications > Utilities > Activity Monitor
         1. Sort by Process Name and look for two processes named cfprefsd.
         2. Make sure you select the one that has your user account, not "root", listed as the User.
         3. Click the X up at the top left to kill that process
    5. restart
    6. this will generate a new .plist file, so you will have to reenter your preferences.
    Sorry for the confusion. Could you try this and let us know-

  • [svn:fx-trunk] 7153: When measuring go large and revert back to Math. ceil rather than Math.round when measuring to try to avoid a scrollRect.

    Revision: 7153
    Author:   [email protected]
    Date:     2009-05-20 13:56:47 -0700 (Wed, 20 May 2009)
    Log Message:
    When measuring go large and revert back to Math.ceil rather than Math.round when measuring to try to avoid a scrollRect.  We saw this come into play with Corey's TextInput performance test.  Since TextInput components are only 1 line high, if we're low even by a fraction of a pixel in our guesstimate of the line height a scrollRect comes into play.
    QA Notes:
    Doc Notes:
    Bugs:
    Reviewers: Corey
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/RichEditableText.as

    Hi John,
    Sorry to tell but tab completion is still failing on my Windows XP/Indesign CS5 (caught by Indesign).
    I just saw your remark on coloring text, here is an example pulled out from Peter's book "ScriptUI for dummies":
    var w = new Window ("dialog");
    var s = w.add ("statictext", undefined, "Static");
    var e = w.add ("edittext", undefined, "Edit");
    var b = w.add ("button", undefined, "Button");
    // The window's backround
    w.graphics.backgroundColor = w.graphics.newBrush (w.graphics.BrushType.SOLID_COLOR, [0.5, 0.0, 0.0]);
    // Font and its colour for the first item, statictext
    s.graphics.font = ScriptUI.newFont ("Helvetica", "Bold", 30);
    s.graphics.foregroundColor = s.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [0.7, 0.7, 0.7], 1);
    // Font and colours for the second item, edittext
    e.graphics.font = ScriptUI.newFont ("Letter Gothic Std", "Bold", 30);
    e.graphics.foregroundColor = e.graphics.newPen (e.graphics.PenType.SOLID_COLOR, [1, 0, 0], 1);
    e.graphics.backgroundColor = e.graphics.newBrush (e.graphics.BrushType.SOLID_COLOR, [0.5, 0.5, 0.5]);
    // Font for the tird control, a button. Can't set colours in buttons
    b.graphics.font = ScriptUI.newFont ("Minion Pro", "Italic", 30);
    w.show ();
    Loic

  • IPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution

    iPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution?

    Unless you have the source files that were on the TC or Windows machine you will have to start over with a new library as follows:
    Start over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1.  Move the existing library folder to the desktop.
    2. Open the library package like this.
    Click to view full size
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Masters (iPhoto 11) folder from the iPhoto Library on the desktop into the open iPhoto window.
    Click to view full size
    This will create a new library with the same Events as the original library but will not keep the metadata, albums, books slideshows and other projects.  Your original library will remain intact for further attempts at fixes is so desired.
    OT

  • I would like my phone to ask me if I want to Pair with my car rather than automatically connect.  Is there a setting for this?

    I would like my phone to ask me if I want to Pair with my car rather than automatically connect.  Is there a setting for this?

    No.
    All functions and settings for iPhones can be found here:
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    If you want to suggest something to Apple, post it here:
    http://www.apple.com/feedback/iphone.html

  • [svn:fx-trunk] 12552: DataGroup now tracks the indices of the active virtual item renderers with a list , rather than the min/max values.

    Revision: 12552
    Revision: 12552
    Author:   [email protected]
    Date:     2009-12-04 13:45:12 -0800 (Fri, 04 Dec 2009)
    Log Message:
    DataGroup now tracks the indices of the active virtual item renderers with a list, rather than the min/max values. 
    DataGroup/addItemRendererToDisplayList() now respects the overlay.
    QE notes:
    Doc notes:
    Bugs: sdk-24052
    Reviewer:
    Tests run: DataGroup, List
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24052
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DataGroup.as

    Hello Martin:
    Thanks for your input.  However I am not certain we have resolved this issue adequately, or understand the principles governing the css as regards this spry menu framework 2.0 (1.0).
    For example, the menu only works in IE 6.0 if the css remains in the head.  I agree with your original post that it shouldn't make any difference whether the css is posted in the head or in a separate style sheet (so long as specificity issues are addressed).  Both should work -- and yet it doesn't.
    If the CSS is placed in the separate style sheet governing the total site, it doesn't work for 6.0.  If placed at the top of the style sheet, conflicts of specificity prevent the menu from rendering properly in any of the browsers causing the rules for general links to govern the menu.   This has been verified using a cross browser testing.  If the styles are placed at the bottom of the style sheet to help them take precedence, they work in all the browsers except for IE 6.
    The website I am building needs to support IE 6 for a variety of reasons, and because it is catering to the non-profit community and to low income persons, I am mindful of even small differences in page weight.
    So for me, at least, the issue remains baffling.
    I appreciate your input, but also would appreciate the input from others, and especially Adobe Community Professionals and employees.  The spry framework in this regard is not well documented.  I am not certain if this is exclusively a CSS problem, if it might also be complicated by the architecture of the spry framework, or if indeed other variables are at play.
    I would be my hope that in resolving the problem, other users of the this particular spry framework might also benefit.
    Thanks,
    Steve.

  • HT204319 Why don't we list model number with this information rather than the month the model was released? e.g. MacBook 2,1 or 5,2 or whatever.

    Why don't we list model number with this information rather than the month the model was released?
    e.g. MacBook 2,1 or 5,2 or whatever.

    Generally, Apple refers to it's systems by what part of the year they are released, ie early - mid - late.  Some people do provide the model number when they post questions, however, generally, the time of year and year released equals the model number.

  • I have created a Muse site for a client that wishes to host with Business Catalyst. How do I publish the site with their account rather than using one of my free sites?

    I have created a Muse site for a client that wishes to host with Business Catalyst. How do I publish the site with their account rather than using one of my free sites? This is so I can keep my free ones for personal projects but also so they can pay for their own hosting. I am happy to set it all up for them but not sure what to do.

    Hi
    You can use their BC login details and use them , which on publish the site will be under their account.
    Please change the BC login from Edit > Preferences > Publish > Switch Accounts , for Mac it would Adobe Muse > Preferences
    Thanks,
    Sanjit

  • Developer toolbar won't disable - keeps popping up when i hit shift, and is not visible in extentions list nor add-on list. how do i uninstall

    for some reason, i now have a developer toolbar, even though i haven't installed this myself. what's even weirder is that it pops up every time i hit shift - thus the lack of capital letters in this post - and it doesn't show up on my extention- nor plug-in list, so i have no idea how to disable it. it shows up under the tools tab and i can shut it down there, but it shows up again whenever i hit shift.

    hello Kuzuri, firefox has an in-built developer toolbar which can be brought up with the keyboard shortcut shift+f2. so this is just a guess, but maybe your keyboard's f2 key is hanging...
    in case you cannot solve it that way, please enter '''about:config''' into the firefox location bar (confirm the info message in case it shows up) & search for the preference named '''devtools.toolbar.enabled''' - double-click the entry and toggle its value to '''false'''. this will generally disable the developer toolbar after you restart the browser.

  • M-Audio FW410 connect with s/pdif rather than firewire

    Forgive me if this is really naive, but I've recently begun having lots of problems with my audio set-up (no sound sporadically, slow volume adjustment response, distortion, etc), and upgrading the 410 driver hasn't helped. This isn't just in Logic, but system-wide.
    There was a thread a year or two ago about hooking up your interface through s/pdif rather than firewire, and my understanding was that doing this (with whatever interface you have) would not require the use of the manufacturer's driver, as it would be controlled through Apple's Core Audio...thus minimizing any driver issues. That could be great as I've never had the need to record more than one track at a time, which is the limitation of doing it this way.
    I wanted to give this a try, but I'm not having any luck. I've unhooked my firewire connection and plugged the optical connections to the back of my G5. I set my Sound In & Out preferences to Digital, but I'm not getting any response. Haven't opened Logic yet, as I was initially wanting to see if I could at least hear Quicktime or iTunes files. No luck. This should work, shouldn't it?
    I've searched these forums, the web in general, and M-Audio's support, but haven't found any clues. I'm guessing that I've either missed an important step, or that I'll still have to use the M-Audio driver even when trying to use s/pdif.
    Thanks for any advice!

    Hi,
    Here's how to do it:
    1. Unplug the M-Audio FW 410 from the computer. Unplug it from the power outlet, if it is plugged in there.
    2. Uninstall the M-Audio drivers, completely. Leave none in the computer, or this will not work correctly.
    3. Box up the FW 410 in it's original box. If this is no longer available, any good cardboard box will do. you don't need fancy packing material at this stage.
    4. Place the unit into a plastic or metal container outside, usually reserved for Trash. Do NOT place the unit in the recycle bin, as this will cause the garbage truck to crash. Then the City will go after you. You can opt for a slam dunk, a three pointer from your front door, as long as it gets in the container.
    5. Immediately afterwards, go to your local Dealer, and purchase either:
    a. A RME product.
    b. A Digidesign product (if you need access to ProTools).
    c. A Motu product.
    6. Return home with new product, open the box, and read the instructions on how to install this new product.
    7. Install new product.
    8. Sit down and meditate for 5 minutes.
    9. After realizing how much or your precious time was wasted by M-Audio, either cry, get drunk (only if over 21), or better yet, REJOICE at the fact that you now have a new product that WORKS.
    WARNING: If you do not follow each step outlined above, you will not be able to continue in the quest for audio recording. Or playback for that matter. And you will continue to be miserable. Unless you're a masochist, in which case continue using the M-Audio product, as it will provide endless hours of pain.
    Cheers

  • When I double click on an event, shows large photo rather than All photos

    I don't know what I did to cause this, but somehow, when I double click on an event, it magnifies the particular photo my mouse is on, rather than opening up all of the photos in the event. How can I change this so when I click on an event, all the photos in the event appear?
    thanks very much.
    collintowne

    Quite iPhoto
    in the finder under your user account ==> library ==> preferences and delete com.apple.iphoto.plist
    launch iPhoto - your preferences will be reset to the iPhoto defaults
    LN

  • Smart folder with logical "or" rather than "and"?

    Is it possible to create a smart folder that uses the logical "OR" rather than "AND" to determine the contents? For example, is it possible to create a smart folder that contains all files ending in ".tiff", ".pict", or ".png"?

    figured it out. Hold the "option" key while hitting the "+" for a new criteria.

Maybe you are looking for

  • Re: Playing of MP3 audio format in MIDP 2.0

    I have the same error ? Has anybody found a solution ? thx a lot Niko

  • IPad 2, VGA adapter, iOS 6?

    I need to use a projector in a meeting to have the participants view my iPad 2 screen. Looking at the description in the Apple store and the reviews posted there I have some questions that I hope someone can help me with. 1. According to The Apple St

  • Files .NEF of Nikon D800: how  can CS6 read them?

    Files .NEF of Nikon D800: how  can CS6 read them?

  • Motion filters no longer accessible from "filters" button

    After installing Leopard, my Motion filters (image control, stylize etc. are no longer visible). I can see this party plugs,such as Fx Factory, but none of the Motion ones. I was wondering if I should reinstall motion as a whole...

  • MBP massive performance slowdown

    Hello, So I picked myself up a new MacBook Pro, standard 15 inch dual 2.8ghz model, about three weeks ago. I updated it to 10.6.2. For the first two weeks, it was fantastic in every way. About a week ago, there started to be occasional little 'glitch