Powerpoint breaks Asian Wordwrap
'this macro solves "orphan letters" being seperated from words by converting each slide's "LineBreakLevel" to strict
Sub strict_asian_punct() ' exampleThis example sets line break control to use level one kinsoku characters. There are three levels designated by PowerPoint HELP 'ppFarEastLineBreakLevelCustom 'ppFarEastLineBreakLevelNormal 'ppFarEastLineBreakLevelStrict For Each oSl In ActivePresentation.Slides ActivePresentation.FarEastLineBreakLevel = ppFarEastLineBreakLevelStrict Next oSl End Sub