Auto-correct breaks KB Shortcuts?

After starting to type my KB shortcut 'qs1' to enter my signature, I got the position shown in my screenshot, plus a frozen iPad which needed rebooting. Predictive Text was already disabled, but Auto-correct was still enabled. So I assume that it conflicts with KB Shortcuts.
I've now switched it off and am hoping that will fix it. Pity, as the feature did do a useful job sometimes.
What a screw up Apple have made of iOS 8.
Terry, East Grinstead, UK

The keyboard problems that you see here are in part due to the really bad forum software that Apple employs from Jive Software. A lot of these keyboard issues have been around since Apple rolled out the newest version of the ASC in mid June.  Thsee issues have been reported over and over again in another are of the community where upper level users have the attention of the hosts and are able to communicate with them.
However, some of these keyboard issues have been made even worse in iOS 8.  Autocorrect is a joke in iOS 8 on my iPad. I have talked to some people that claim that it works fine for them, and I have talked to a number of people that think that it is horrible like I do. Apple is aware of this and all we can do is hope that a fix is coming eventually...using the word soon here would be foolish since its been bad for 4 months already.
One problem that I do not have is the iPad crashing when I use keyboard shortcuts. I only use a few of them, because frankly, I can't remember them so its just easier for me to type everything out like I've done for over 40 years now.

Similar Messages

  • IMovie capture from DV tape without auto scene break

    Has anyone figured out to prevent iMovie from automatically inserting scene breaks in iMovie'11.
    I am importing previously edited footage for conversion.  This still contains the timestamps.
    After importing, iMovie automatically places each clip by time/date order in Events - which means it is jumbled up because it has previously been edited.
    Basically what I want is either 1) to import as a single clip, i.e. disable auto scene break, or 2) to be able to sort clips into same time/date order that they were imported.
    Cheers

    iMovie will assume that anything imported in DV Stream is coming directly off a camcorder, and therefore will be sorted in chronological order.
    If you still have access to the software where you created these movies, you can share them out in something other than DV Stream.
    For example, if you have iMovie 06, you can import it without auto scene breaks. Then Export Using QuickTime to an mov container in the DV codec. That will produce an mov file that iMOvie 11 will import in the correct order.

  • How do I add an entry to the auto correct spell check dictionary?

    How do I add an entry to the auto-correct dictionary for spell check?

    The suggestion from Encrypted11 is for adding a keyboard shortcut, if that is what you want to do. If you want to add a custom word to the keyboard dictionary ....
    The iPad Dictionary
    The iPad has a dictionary built in. As you type, it compares what you've typed against the words in that dictionary. If it finds a partial match, it displays a suggestion just beneath what you have typed.
    If you accept the suggestion by tapping the Space or full stop, great.
    If you allow the 'mistake' to stand, the second time you type the same word and reject the correction, iPad adds the new word to its custom, dynamic dictionary. From now on, it will accept the new word and will even suggest it the next time you type something like it.
    That is copied from here.
    http://www.my-iguru.com/ipad/ipad-hints-tips/ipad-keyboard-tips-tricks.php

  • What happened to Auto-Correct in the iOS 7 update & can it be fixed?

    I am sooo frustrated & I can't take it anymore!!!
    My keyboard has essentially taken on a mind of it's own since I did the iOS 7 update. And by the 'coded' messages I receive from family & friends, followed by "#%*+ed Auto-Correct!!!" I know I'm not the only one!
    I find it changes words that are spelled correctly & are grammatically sound into something different. It doesn't know what an apostrophe is anymore. It has no sense of humor 'cause it can't figure out how to lol without capitalizing or turning it into something else. (My sister Quoll'ed at me earlier!)
    What's goin' on & how can I get it back to the only sorta-sucky, but mostly funny stuff it did in iOS 6?
    Thanks.

    I've observed this too and have written to Apple feedback. Suggest everyone else do so as well.
    What's happening is they've attempted to implement an autocorrect system that doesn't just look at the current word but the current word and the previous word. In theory that's a great idea, as sometimes the correct spelling will be dependent on context. Mostly, though, its effects are too aggressive and I find I'm ending up with many more errors than under iOS 6 (and I'm fairly accurate on the iP*).
    The thing I specifically complained out – since it makes no sense at all – is the way iOS 7 autocorrect seems to hate commas!
    If I type a phrase like "the line, therefore" iOS 7 will attempt to turn "line," into some a word without punctuation, e.g. "lines" or "lined". Only after I've typed "therefore" will it offer me the possibility of returning to what I actually typed ("line,"). And if I'm in a rush and don't tap the [x] on the proposed "correction" in time then I'm stuck with it and have to go back and manually edit. (Or I don't notice and end up sending someone a complete nonsense of a sentence.)
    This kind of autocorrect is completely nuts. Especially on the iPhone, where you have to go to a different screen of the keyboard to type a comma, so you're hardly going to do it by accident! And on the iPad the corrections almost never involve adding letters that are physically close to the comma key on the keyboard, so again, you're hardly going to hit the comma key by accident if you want, for example, "lines".
    My recommendation to Apple was that auto-correct should always respect all punctuation. (Or there should be a setting we switch on for "respect punctuation".)
    And that autocorrect should focus on trying to correct the kinds of "real" errors that are made by tapping on adjacent keys instead of aggressively trying to predict what we're about to say and actually changing our words.
    In the meantime, I've set up a custom shortcut [,,] which resolves to [, ] – basically on the same principle as two spaces resolving to a period. When I remember to use it, it mostly works quite well at giving me commas that stay stuck.

  • How to solve the auto word break problem in Arabic language Flex project

    Hi, I'm using Flex SDK 3.5 to develop a game in Arabic. Now I have a problem with the auto word break on the TextArea Control.
    The output looks like this (Sorry I can't type arabic, so I use English instead)
    I don't know any A
    rabic text
    The expected outpit should be
    I don't know any
    Arabic text
    My settings of the textarea are fine in English version games. But just didn't work in Arabic. Any idea how to solve this problem? Thanks.

    Hi Rodger,
    Sorry to reopen this thread again. I was puzzled by the data format in Motion-DDK.
    From the Motion-DDK, if u32, i32 and f64 data are passed to and from the controller, a specific format must be followed as below:
    u32:
    u32 cmddata[x] = (WORD) (u32data ?16);
    cmddata[x + 1] = (u16) u32data;
    i32:
    i32 cmddata[x] = (WORD) (i32data ?16);
    cmddata[x + 1] = (i16) i32data;
    f64:
    f64—big endian order cmddata[x] = ((u16) (&f64data)) [3];
    cmddata[x + 1] = ((u16) (&f64data)) [2];
    cmddata[x + 2] = ((u16) (&f64data)) [1];
    cmddata[x + 3] = ((u16) (&f64data)) [0];
    f64—little endian order cmddata[x] = ((u16) (&f64data)) [0];
    cmddata[x + 1] = ((u16) (&f64data)) [1];
    cmddata[x + 2] = ((u16) (&f64data)) [2];
    cmddata[x + 3] = ((u16) (&f64data)) [3];
    My first question: is the "?" symbol means the >> (shift operator) or something else?
    The second question is: if "?" means ">>" in this list, all the u32 and i32 data are always transferred in big-endian order. Is it the only correct way to deliver the i32 and u32 data? Or I can pass the u32 and i32 either in little-order or big-order depending on my platform?
    The last one: could you provide a feasible C code on how to convert the f64 data to u16?
    I first followed the format in the list to convert the f64 data, but met with a lot of compiler errors in VC++. After checked with MSDN, it is said the convert process is double(f64)->long(i32)->unsigned short(u16). But the decimal part of double will be truncated during converting to long...
    So, could you help me with some very simple sample code on the convert process? 
    Thank you for your support!
    Rick
    MSP

  • Weird Auto Correct Spelling on iPhone5

    Is anyone experiencing weird auto correcting on their iPhone 5? When I type "is", "tits" appears! And "dick" pops up when I type "he"!

    Sounds like someone has been messing with your keyboard shortcuts...
    Settings>General>Keyboard. Scroll down to "Shortcuts".

  • Problem : Auto Correction when Text Messaging

    Ok so i have an iphone 4 and I used it recently on a message board forum. i wanted to respond to a user that posted something and i typed " ^^^^ yea "
    well not anytime i text message anyone and want to write "yea" it auto corrects to " ^^^^ yea"
    i want to keep auto correct on (to fix typos etc) but i dont want the ^^^^ yea everytime i want to text "yea"
    any help ????
    thanks!

    Go to Settings, General, Keyboard, Add New Shortcut and type the phrase and the shortcut you use to type the word. For example, ab would be about. You can go back and delete the shortcuts if you don't want them later.

  • Japanese iPhone French language auto-correct

    Hi,
    I use an iPhone5 in Japan and I am very happy to be able to use a French keyboard (me being French and all...) but it seems there is no proper dictionary behind the auto-correct so that almost every word appears as misspelled.
    Is it possible to download a French dictionary of some sort?

    No, there is nothing a user can add to the autocorrect feature of an iOS device.  You may be able to train the way it works by rejecting its suggestions or using the keyboard shortcut feature.
    There is a French reference dictionary for finding definitions of words, but it doesn't relate to the autocorrect.

  • Text auto-correction is turning on again!

    Hi all!
    My iPhone4 is running iOS 5.0.1 and I'm very happy!
    But it recently turns text auto-correction on. I turn it off, but sometime later I found it turned on again
    I can't understand what causes it to do this. How can I turn this feature absolutely off?

    What troubleshooting have you tried over these few days? You charging the phone? Try a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone should reboot. This can take up to 60 seconds.

  • Text auto-correct grabbing words from gmail / etc.

    I'm not sure if this is a Gingerbread issue, but this is a problem that I was introduced to when I got my Xperia PLAY. 
    The on-screen QWERTY keyboard lends itself to frequent typos.  Since I started using the Xperia, the auto-correct dictionary has been automatically synced and populated with various words that it apparently grabbed out of my gmail, email, contacts, address book, or elsewhere.   This includes names, segments of email addresses, already misspelled words, etc.  
    This has made the auto-correct function useless on my phone, and makes text messaging a convoluted and futile chore that' I'd simply rather not do.   
    For example, when I'm trying to send a text to someone asking them, "what time?"  -- I commonly typo "time" as "timr."  
    Now, auto-correct on my Xperia always wants to change "timr" into "TimeBomb4321" -- which is a segment of an email address out of my address book.   
    And, there's apparently no way to turn this off.   
    There's no way to toggle this under "Accounts & sync."    
    "User Dictionary" under Settings only includes words that I have manually added to it.    
    HOW DO I FIX THIS??? 

    Hi chuckk,
    I understand the importance of having a streamlined text experience.  I would suggest deleting some of the auto-saved words from the dictionary. Settings>Language & Keyboard>User Dictionary.  Press on hold the word you no longer want and the select delete.  I am hopeful this information is helpful.  Please let me know if you need further assistance.
    Thank you for your contribution to our community forums,

  • Why did Word on Office 2013 REMOVE Auto Correct from Right-Click Context Menu??

    Hi Microsoft -
    I normally don't rant, but this is a killer feature removal, and the reason given is for aesthetics - 'Removal of clutter" is how it's worded here:
    [Changes in Office 2013]
    http://technet.microsoft.com/en-us/library/cc178954(en-us).aspx
    I copy n pasted below the operative row from the linked TechNet page as to the reason WHY this critical (and very popular feature) has been removed from Microsoft Office 2013 Word's context-menu: LESS CLUTTER
    And your answer is ambiguous and doesn't solve the issue that you created to make things prettier: "Click the AutoCorrect Options button" Then what?  ADD EACH WORD MANUALLY? 
    Please advise ALL OF US that want this feature back how to have our commonly misspelled words fixed and added automatically to the dictionary.  If I am missing this in a major way somehow, I apologize completely and will issue a public apology via any
    social media platform of your choice.  If it really is gone, and I have to manually add the entries into a buried table 6-clicks deep, then I will issue a public excoriation of this feature on as many social platforms of my choice.
    Sincerely,
    Maximus Mednick
    COPY N PASTE AS FOLLOWS:
    =-=-=-=-=-=-=-=
    Contents of spelling error context menu
                    Word and WordMail within Outlook
    Modifying the feature
    Auto-Correct and certain formatting tools are no longer available from the spelling error context menu.
    To make Word 2013 cleaner and less cluttered, we removed AutoCorrect and certain formatting tools from the spelling error context menu. The features are still available in Word 2013 through other entry points within the Word user interface.
    Less clutter in the spelling error context menu. This enables users to find popular commands more quickly. In addition, the spelling error context menu now fits better on the screen.
    To change AutoCorrect options, do the following:
    Choose File -> Options -> Proofing
    Choose the AutoCorrect Options button.
    =-=-=-=-=-=-=-=
    Thanks, MAXIMUS

    Microsoft used to be about allowing users to customize the OS and apps however they want. This was one reason I have always preferred Windows over Mac. There are 5 ways to do any one thing, and you can customize it to do it however you want. It's all about
    user choice. Please don't go the way of Apple and force users into the way that you *think* we should do things. 
    <rant>
    While I whole heartedly agree with this suggestion, if you look through this blog about the design decisions that went into the 2007 ribbon:
    Jensen Harris: An Office User Interface Blog -
    http://blogs.msdn.com/b/jensenh/archive/2008/03/12/table-of-contents.aspx
    You'll see that one of the considerations of the ribbon was to ELIMINATE/REDUCE customization because it was costing large corporate customers too much time/money to support their users with 2003 customized menu/toolbars.  In other words, the ribbon
    was intentionally built as a fixed design so that average user cannot change it.  The QAT was an afterthought, a sop, to allow users minimal customization. 
    They found that the 2007 lock down was too much of a "good thing", too much like the good old "IBM 360 green screen" (even if most people don't recognize the reference), so in 2010 they
    re-introduced limited Ribbon customization within the UI.
    But you still can't customize the default tabs. And to add injury to insult, if you do want to customize a default tab and go to the effort of trying to recreate the default tabs and groups
    within the Ribbon UI, you'll eventually find that YOU CAN'T'! There is no way inside the UI to force the buttons to layout the same way! AHHH!
    Even in 2007,
    EXPERTS have had the option of creating custom Ribbons/tabs by editing XML, but that is pretty serious programming, out of scope for 99% of users.
    The "solution" to the problem was too simple. Just add an option to allow users to turn on the old menu UI.  Even if it had been buried as a registry hack, the people who really wanted it would have learned about it. Then MS could have collected statistics
    on usage that would have "proved" that the menu was preferred over the ribbon.  The thing is, if the ribbon was defaulted "out of the box", over time people would eventually all switch over to it. Simply because it was the default, because MS only produced
    new training material referring for the ribbon
    Now, I'll concede that the ribbon really may be more "intuitive", but only for new users. For long time users the change is very jarring.
    They made the same choice with Windows 8.  In the last Windows 8 consumer Preview there was a registry hack to bypass the Start Screen.  I learned about it in July or August. But MS was so sure the Start screen/metro was the only way to go they
    rushed out a Windows Update to eliminate that registry entry. And it was eliminated from the RTM version. 
    WHY?
    Why did they remove the user's right to chose the UI that worked best for them? I don't know.
    </end rant>  sorry, this is a hot button for me.

  • How can I change my auto-correction language from english to french?

    My system language is english, so all the default language is also in english
    but how can I change the auto-correction language from english to french and without changing the menu language?
    Message was edited by: Marixomia

    It's just, I want to change my spelling checker from english to french, that when I type some words in wrong order or miss some, I can know that.
    For now, when I type in french, almost every words are underlined by the red lines...

  • How can I import auto correct form old version

    How can I import all my auto correct list from Pages into the new version 5, they have all been deleted

    The Auto Correct function is now the System Auto Correct in System preferences.
    You will need to re-create your list unfortunately.
    Give Apple feedback on the issue, either in the Pages Feedback or the App Store.
    Peter

  • Is there a way to Auto-Correct Spelling of text as I write text in Dreamweaver CS6 ?

    While I write text on the html pages using Dreamweaver CS6 (Adobe Cloud downloaded version 2014), there is only an option to Spell Check the page.
    But I am asking if there is a way to set preferences to auto-correct suggestions such as how Word Docs offer solutions to mis-spelled words?

    Thank you for your replies.
    I am using Adobe, Creative Cloud /  Dreamweaver Software Program iMac Downloads, updated to current.
    I believe there not to be the feature present in Dreamweaver on "Page View" to Spell Correct Automatically by giving word options, etc.
    I know to spell check the entire page before posting the page(s) live.
    I am not only writing in code view, designing HTML 5 pages, but  I am the Author and Editor of all content as well.
    I can see how the coders would hate having text auto correct.
    But, on the editor side, as a writer, from the page view, ... it would rock as an option.
    :-) Sharon S.

  • How do I turn off auto-correct in MacMail?

    How do I turn off auto-correct in MacMail?

    Open a new message, the go to Mail/Edit/Spelling and Grammar and turn off autocorrect.

Maybe you are looking for

  • How can I get Firefox to default to Unicode rather that Western ?

    This is the same question as the unanswered, archived thread https://support.mozilla.org/en-US/questions/989012?fpa=1 Firefox 33.0 displays mojibake+English instead of Japanese+English. It shouldn't matter whether the web page is encoded in ShiftJIS,

  • Firewire to transfer data

    I have a 30 pin FireWire from an older iPod, will it work to charge my iPhone and transfer data? Or will "fry" my iPhone, anyone?

  • How to display html content in flex hero..

    i need to display html content using flex hero for balckberry playbook..i could not find a component for it..i have tried with spark text area by setting its html text property via MobileTextField. bt i need a webview to load html content to execute

  • Anybody interested in the training "Oracle SOA Suite 10g: SOA Essentials"

    Hi, Oracle India currently does not have a Batch scheduled for the training "Oracle SOA Suite 10g: SOA Essentials" till March 2010. This can be only possible if 8-10 members are interested for the same. The details are mentioned as below ie Sr No    

  • Premiere cs4 sequence to audition

    hello, is there a way to send a premiere cs4 sequence to audition 3 so it appears in audition just as it does in premiere? i know you can send one clip at a time, or export an entire audio track and then import it into audition, but i want all the cl