AutoHotkey - AHK - Print AutoCorrect Entries from Microsoft Office and use as AHK script

preview_player
Показать описание
#AHK #AutoHotkey #Automation #AutoCorrect #SpellCheck #SpellChecker

Are you tired of correcting your misspelled words? Fear no more, AutoHotkey to the rescue. This video will show you how to print all of the AutoCorrect Entries from Microsoft Office using the Macro below and create a AutoHotkey script to use the AutoCorrect Entries anywhere on your PC as a Spell Checker.

Sub PrintAutoCorrect()
Dim a As AutoCorrectEntry

Selection.ParagraphFormat.TabStops.ClearAll
Selection.ParagraphFormat.TabStops.Add Position:=72, _
Alignment:=wdAlignTabLeft, Leader:=wdTabLeaderSpaces

For Each a In Application.AutoCorrect.Entries
Selection.TypeText a.Name & vbTab & a.Value & " " & vbCr
Next
End Sub
Рекомендации по теме
Комментарии
Автор

Thank you. you are awesome
Edit:: this comment section will have perfect spelling

medschoolhub_
Автор

this really helped me a lot and saved my time. Thanks

HiteshPatel-cmyc