spiros

  • Administrator
  • Hero Member
  • *****
    • Posts: 857312
    • Gender:Male
  • point d’amour
Office 365 having a slow and cumbersome spell check feature called "Editor". How to go back.

Looks like this is not the first time Microsoft downgrades its Office/Word features by offering new iterations with... reduced functionality.

Take for example the new Editor (which replaces spell check, and yes, you can still access it with F7). The workflow is slow and hardly intuitive (for example no easy way to work on it mouse-free using keyboard shortcuts). There is hope however. Just use this macro and F7 will run the old spell check.

Code: [Select]
Sub ToolsProofing() 'SpellCheckDocumentClassic()  Intercepts F7 keyboard shortcut
    'Charles Kenyon  26 February 2019
    If Application.Version < "16.0" Then
        Dialogs(wdDialogToolsSpellingAndGrammar).Show
    Else
        ActiveDocument.CheckGrammar
    End If
End Sub

Some references
https://answers.microsoft.com/en-us/msoffice/forum/msoffice_word-mso_win10-mso_365hp/word-365-editor-pane-makes-spellcheck-take-a-very/3bc1f9e5-7b4a-4340-974f-e84844bd5cc5
https://word.uservoice.com/forums/304924-word-for-windows-desktop-application/suggestions/35496691-allow-use-of-old-spell-check-dialog-in-word-2016-a
https://answers.microsoft.com/en-us/msoffice/forum/all/classic-spell-check-dialog-macro-to-use-to-get/a53fff0c-f15d-4150-95d6-1724c6ddca91
https://docs.microsoft.com/en-us/office/troubleshoot/word/not-recognize-mispespelled-words-in-word
https://techcommunity.microsoft.com/t5/office-365/keyboard-shortcuts-for-spell-checking-workflow/m-p/1927648#M32140

One good thing about it though, the "Add to AutoCorrect" option which disappeared in Word 2013 has been added again.

The first screen shows modern "Editor" functionality and the second screen shows how it works after the macro. The third screen shows the Add to AutoCorrect functionality.
« Last Edit: 24 Nov, 2020, 18:32:07 by spiros »
Look up Multiple Greek, Ancient Greek and Latin dictionaries — Οὕτω τι βαθὺ καὶ μυστηριῶδες ἡ σιγὴ καὶ νηφάλιον, ἡ δὲ μέθη λάλον· ἄνουν γὰρ καὶ ὀλιγόφρον, διὰ τοῦτο καὶ πολύφωνον (Plutarch)


 

Search Tools