Letter 'A' not working

Today the letter A on my blackberry 8520 stopped working completely. when pressing either the letter Q or S it will come up as Qa or Sa  . . It had happened once before but it appeared to fix itself after not being used for a few hours. I have read something about moisture on other forums and I feel this may be the answer but it only affects the letter A. Does anyone have any suggestions as to what I should do?
Thanks

Hello deano8904 and welcome to the BlackBerry Support Community Forums.
You can try reloading your BlackBerry software.
Be sure back up your device first as all data will be wiped out.
To do the reload consult KB11320
Before restoring any data, test the A key. If its still acting up, you might want to contact your wireless service provider.
To restore your data consult KB10339 (Desktop version 4.3-5.0) KB23680 (Desktop version 6.0)
-HMthePirate
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Letter F not working on iPad

    Letter F not working on iPad 2..have to press real hard to get it working

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • I AM USING KEYBOARD WITHOUT MOUSE AND LETTER "H" NOT WORKING

    I AM USING KEYBOARD WITH NO MOUSE AND LETTER "H" NOT WORKING
    DOES SOMEONE KNOWS WHAT CAN BE DONE.
    THANK YOU
    MARIA

    I saw this issue before where cause was a bad preference for another application.
    When I had the "can't type Shift H" problem in Entourage, it was a corrupt preference for FlightCheck, a preflighting program I use in conjuction with QuarkXPress that was the culprit.
    First determine if the problem is in your User’s folder by creating a new User in System Preferences and test for the problem there. If it goes away then you know the problem is in your User’s folder.
    Use new User to test for problems
    Let us know the results

  • International letter versions of letter a not working

    Seems the international letter versions of the letter a is not working properly on my Ipad. If capital letters it works. Other international versions of letters seems to work ie. Letters e and o etc. Have tried in several different programs and no luck. Any suggestions?
    Thanks
    Goran

    When holding down the a I do get the window and can see the different version of a:s. If I choose the Swedish a with two dots above the Ipad writes the letter ar. If I choose the Swedish a with a ring above the cursor jumps to the middle of the last sentence (Sent from my Ipad) and writes an a (this test done in Gmail). Choosing the same a in other apps brings up the "select, select all, paste" bar. None of the other versions of a:s does what they are supposed to. All the alternative o:s work. Have tried in other apps and in internet search boxes and the alternative a:s just don't work.
    Goran

  • AS Random letter script not working

    I have the Flash AS Bible and one of the exercises is to
    create a random letter displayer. I am not getting any errors in my
    AS code, so I believe I have that o.k, but when I test movie I only
    get a blank screen. One part I am unsure about is "using the text
    tool, add an authoring time dynamic TextField object offstage on
    the embedded font layer.
    I see ta dynamic text box created, but I am not sure about
    the rest. I also have it in the embedded font layer.
    Also this part. "Open the Character Embedding dialog box and
    choose the "specify ranges" option and the value abcdef in the
    "include these characters" field.
    I see the character embedding dialog box, but not the option
    to choose "specify ranges". I do see the "include these characters"
    field.
    Someone please explain what I may be doing wrong.
    Also just FYI herre is the AS code:
    //Create the array of letters.
    var aLetters:Array = ["a", "b", "c", "d" , "e", "f"];
    //Set the interval at which a new letter should be displayed.
    var nDisplayInterval:Number = setInterval(this,
    "displayLetter", 1);
    //Define an associative array to store data about ecach
    letter.
    var oLetters
    bject = new Object();
    function displayLetter():Void {
    //Create a random integer to yield one of the indices from
    the
    //aLetters array.
    var nRandomIndex:Number = Math.floor(Math.random()
    *aLetters.length);
    //Create random numbers to use for x and y coordinates of
    // the letter TextField.
    var nRandomX:Number = Math.random() *550;
    var randomY:Number = Math.random() *400;
    //Get the next available depth;
    var nDepth:Number = this.getNextHighestDepth();
    //Create a new Textfield object at the random x and y
    //coordinates.
    var tLetter:TextField = this.createTextField("tletter" +
    nDepth,
    nDepth, nRandomX, nRandomY, 0, 0);
    //Set the autosize and text properties so the random letter
    displays
    tLetter.autosize = "left";
    //Set the text.
    tLetter.text = aLetters[nRandomIndex];
    //Initialize the _alpha property to 0.
    tLetter._alpha=0;
    //Tell Flash to embed the font for the TextField.
    tLetter.embedFonts = true;
    //Define a new object into which to store some data for the
    letter.
    var oLetter
    bject = new Object();
    //Assign the object to the oLetters assocaitive array usimg
    the instance name
    //of the TextField object as the key
    oLetters[tLetter._name] = oLetter;
    //Set a element called fadeDirection that determines
    //the increment by which the alpha will change. And set the
    //alpha to 0 initially.
    oLetter.fadeDirection = 5;
    //Define an element that references the TextField.
    oLetter.letterField = tLetter;
    //Create a TextFormat object that tells Flash to use the
    //Verdana font and sets the size to 15.
    var tfFormatter:TextFormat = new TextFormat();
    tfFormatter.font="Verdana";
    tfFormatter.size= 15;
    //Assign the TextFormat to the TextField.
    tLetter.setTextFormat(tfFormatter);
    //Set an interval at which the letter will fade in and out.
    Assign the ID
    //to a property of the oLetter onject so we can clear it
    later. Pass the
    //alphaFade() function a reference to the oletter object.
    oLetter.interval = setInterval(alphaFade, 10, oLetter);
    function alphaFade(oLetter
    bject):Void {
    //Retrieve the TextField object reference.
    var tLetter:TextField = oLetter.letterField;
    //Increment the letter TextField's alpha.
    tLetter._alpha += oLetter.fadeDirection;
    //Check to see if the letter has faded in completely. If so
    //set the fadeDirection property to -5 so that The TextField
    //Starts to fade out. Otherwise, if the letter has faded out
    //completely clear the interval and remove the TextField.
    if(oLetter.fadeDirection > 0 && tLetter._alpha
    >=100) {
    oLetter.fadeDirection = -5;
    else if(oLetter.fadeDirection < 0 &&
    tLetter._alpha <=0) {
    clearInterval(oLetter.interval);
    delete oLetters[tLetter._name];
    tLetter.removeTextField();
    //make sure to update the screen.
    updateAfterEvent();
    thanks!

    Sounds ok but here is how you do that.
    With the text tool selected, draw a text box anywhere you
    like but not on the stage. Using the property inspector set the
    text field to be dynamic. Type some text in the text field, select
    it and using the property inspector, select Verdana for the font.
    In the property inspector click 'embed' and select the character
    sets you want to embed or just use the "include these characters"
    field to embed the characters you are using in your aLetters array.
    If you do not embed the font, you'll get a blank screen. I've
    tested the code and it works properly.

  • ITunes letter shortcut not working.

    I have an issue where in the album grid view, pressing a keyboard letter no longer takes me to the first album of an artist beginning with that letter. The album view opens, but I have to scroll up or down to the correct place in the list to view it. For example when at the top of the list, pressing the 'k' key on my keyboard should open up the first album by the artist 'Kaiser Chiefs' and show it in the list, but instead it scrolls down to the 't' artists. In the same manner if I am at the bottom of the list, pressing 'k' actually brings me to the top of the list. In both cases I can then scroll back to where iTunes should be and the album view is open showing me the songs.
    Anyone else having this issue? I've tried disabling/enabling iTunes match, fullscreen and not, sidebar open and closed, and resizing the ITunes window. I should also note that the song/artist list views work just fine.

    https://discussions.apple.com/message/25904832#25904832
    No, I haven't seen anybody post a solution.  There are so few posts about this it is either a rarely used thing that few people are missing or for some reason it isn't working the way you are trying to use it.  Perhaps you have to be in a certain window display.

  • HTML5 Glossary Letter Index Not Working

    Cp 7.01.237
    Glossary Interaction
    Approximately 175 entries
    Published as HTML5
    Clicking a letter from the index results in the list of words scolling only part way. For instance, clicking the letter T will only scroll the list to about the P section of the list.
    I have reported the bug.
    I have tried the project in Chrome, Firefox, IE, Safari, Opera and on an Android phone (4.3). All of them scroll only part of the way when a letter toward the end of the alphabet is clicked.
    I have tried with and without scalable HTML content selected. Same results.
    The project works as expected when published to SWF and not HTML5; meaning the letter index scrolls to the correct position in the list of terms when published as SWF.
    I am hopeful Adobe will respond to this issue.
    Thank you.
    Michael

    var elementPosition = dataID*28;//(28 is estimated height of each td item with padding)
    "28" seems to be the magic number. If I use a value greater than or less than I get poor scrolling accuracy. I believe the issue results from some <def></entries being longer than others and some are very short. When "28" is used, the scrolling is pretty good and I am able to see the letter heading for each letter. If, for instance, I use "30" as the value, I get progressively worse scrolls and the further down the alphabet I go, the more likely it is that it will scroll past the letter heading and put me one or more terms into that letter's group.
    All I can say is, "Wow!" That was quite a find. You seem to have some detailed knowledge of how the glossary interaction works with HTML5. I appreciate it. Thnak you.

  • [SOLVED] Toshiba 3.0 USB 2TB (HDTC720XK​3C1) Assigned Drive Letter But Not Working

    My external HD has 750gb of data that I cant access.  It shows up with a hard drive letter, but doesnt show like it used to (showing how much storage is used and unused) or showing it's assigned name.  It also doesnt work if I plug it into a different computer (does the same thing).  I cant remember if I properly removed it when I unplugged it last night when I finished using it, so that may be the cause.  I tried going to "manage drives" and uninstalling the drivers, but no luck.  Tried rebooting with it connected, no luck.  Tried unplugging for several hours and plugging back in, no luck.  I do not wish to reformat the drive because of the 750GB of data I'll lose.  Please help!  

    *****I FIXED IT!!!!!*******   I continued searching the web and found the fix.  All I needed to do was open the command prompt (cmd) and run this script "chkdsk /f E: (E: was the generic drive letter assigned).  Basically windows runs check disk and fixes the problem.  It also said you could try "chkdsk /r E:" but it worked on my first attempt.  Make sure you allow the computer enough time to finish.... It took a long time for it to completely finish.  (one way to know if it's done, you will be able to type in the cmd prompt again, if not, your computer is still working in the back ground)  After it was done, I ran my windows defender to check my removable drive for virus's and sure enough it found 3 threats.
    I HOPE THIS HELPS ANYONE ELSE WITH THE SAME PROBLEM as it seems like a relatively easy fix, but over 80 people had read my plee for help with no response.

  • Keyboard letter "l" not working

    My letter l isn't working. All the other keys on the keyboard work. How can I fix this?

    Fist rule out hardware by logging into another account and seeing if it works. If it does not then download the widget called "Option/Alt" at:
    http://www.versiontracker.com/dyn/moreinfo/macosx/29263&vid=288618
    It will show if the key is being recognized. It will present a keyboard display that you can see the I key blacken if it is recognized. You can also click this virtual keyboard to see if you can type a key that way or if there is something in software not allowing a particular letter to be typed.

  • Search artist by letter is not working after I updated iTunes

    Usually you can just use the side and go from A to S instead of scrolling through all the letters. But now since I updated itunes, that isn't working and my Genius option on the bottom left of my iPod isn't there
    Message was edited by: Cacu28

    I had the same problem, I connected to a different computer that had itunes. It also was oneI never connected to before. I held the power botton and homebutton till it showed up connect to itunes. I opened up it tunes and it said my phone needed a phone software update, i folled the prompt and set it up as a new phone. Then i resored it, then put it on the computer u usually sync it on and restore it to a date the phone was working to, this helped me, if u want i can help u over the phone if u cant get it, let me know and i will send u my number over my email address, hope it works, basically i swiped the phone clean and reinstalled all software by taking these steps

  • My flash flayer does not work on my Windows 8 Surface Tablet, it also won't let me see if i already

    My flash flayer does not work on my Windows 8 Surface Tablet, it also won't let me see if i already have it installed...

    1.      Are you getting any error message?
    2.      Which browser are you using?
    3.      Were there any recent changes made on the computer prior to the issue?

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working.

    My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working. It's only 3 months old and was working perfectly fine 30min before this happened.

    Hello Kierasully,
    I would start your troubleshooting with the article below for issues of not being able to log in to your Mac. Start with booting up in to Safe Boot as well as resetting PRAM on your Mac. If that does not work, then verify the hard drive with booting to the Recover HD and go to Disk Utility to verify it.
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/en-us/ts2570
    Regards,
    -Norm G. 

  • I have an iphone 4s, I installed Vtok but the video chatting part of the app is not working when I try to chat with my husband through gmail on his PC. Can I fix this or is there another app that will let me chat with my gmail chat contacts?

    Vtok video chatting is not working on my iphone 4s. When I try to do a video chat with my gmail chat contacts who are using a PC we each only get the voice part of the chat and no video. Is there some way to fix this or is there another program that will let me video chat with my gmail chat contacts? Thank you.

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • I cannot get my messages/text messages to work om my Hi.  I am sending this thru my iPad.  Respond and let me know you got it.  Fun fun fun.  .  I did go and try to another Apple ID different from my iPhone but it still will not work.  Can anyone help me?

    I cannot get my messages/text messages to work om my Hi.  I am sending this thru my iPad.  Respond and let me know you got it.  Fun fun fun.  .  I did go and try to another Apple ID different from my iPhone but it still will not work.  Can anyone help me?

    chicx wrote:
    This is the third time of writing this on your Apple Support Communities!
    Not with your current user id.
    Far too much uneccesary information in your post, which only confuses things, a vast amount!
    Let's start with iTunes.
    Have you updated iTunes to 11.1.5, because the previous version did appear to have an issue about seeing iPods?
    With iTunes 11.1.5 installed, look in Edit/Preferences/Devices, (or use the ALT key, followed by the E key and then the F key) and make sure that the box named Prevent iPods, iPhones and iPads from syncing automatically does not have a tick in the box.
    Once you have doen those two things, check to see if the iPod is seen by iTunes.
    chicx wrote:
    By the way, what does IOS mean? (I thought IO stood for operating system, but am flummoxed by the S on the end.
    Really?
    OS stands for Operating System. (In computer speak, IO means Input/Output.)
    iOS originally stood for iPhone Operating System, but it now refers to the iPod Touch and iPhone. The iPod Classic, which you have listed in your profile as your iPod, does not use iOS.
    I assume that you have been listening to the Podcast in your iTunes on the computer as you cannot transfer it to your iPod. It's what I'd do.

Maybe you are looking for

  • Acrobat Scanning with CM1312nfi MFP. Can't change from legal size paper

    I've had the same problem with mulitple versions of Adobe Acrobat, but most recenlty with version XI Standad. All my scans using the Acobat interface result in legal size scans using the ADF, instead of letter size.   When I try to "Configure Preset"

  • Is this the correct type of Ram for a mac mini?

    I have a 2007 Mac mini, and want to go from 1gig to 2 gigs of Ram. I currently have 2 512's I need to know 2 things. (i'm pretty sure on both but i'm not a huge hardware guy to bare with me) 1. Will there be any compatibility problems? I.e if i upgra

  • IMessage sent through iCloud email

    I recently restored my phone to an earlier state from a few hours ago. After doing so, I sent an imessage to a friend; however the imessage didn't go through and kept saying "sending". I double tapped it and hit "send as text message" and it went thr

  • X-FI XtremeMusic + z5500

    X-FI XtremeMusic + z5500@ Hi there, I'm just curious if theres a lot of human beings who are using this system and if so, how your configurated it for the best possible thrill? Myself uses this setup and I'm pleased. Im on Windows 7 32x with 2gb of R

  • Enhancement of component ERP_H with a custom field in the Web UI

    Hi, I'm facing an error when enhancing the component ERP_H with a custom field in the web UI. I've followed the steps mentioned in the pdf document called "Enhancement Options for the Lean Order Interface" (Note 1224179): I´ve done a enhacement on ER