Using VBA, you could try this -- It opens showing any ballons:
Sub OpenPrev()
With ActiveWindow.View
.ShowRevisionsAndComments = True
.RevisionsView = wdRevisionsViewFinal
'.RevisionsView = as you type here, you will see other things you can try to fine tune to what you want
End With
End Sub