You can make the Word Count toolbar "somewhat dynamic" with the macros
below.
The count will update every 2 seconds after you click "Recount" the first
time.
Clicking "Recount" again will toggle the automatic updating off again (as
will Ctrl+Pause, which stops any macro).
Performance may suffer a bit, the status bar will flicker every two
seconds, and you may run into trouble if you need to run other macros.
Regards,
Klaus
Sub ToolsWordCountRecount()
Static boolStop As Boolean
WordBasic.ToolsWordCountRecount
' False if running first time:
If boolStop = False Then
Application.OnTime When:=Now + TimeValue("00:00:02"), _
Name:="Florida"
boolStop = True
Else
' stop OnTime timer:
Application.OnTime When:=Now, Name:=""
boolStop = False
End If
End Sub
Private Sub Florida()
' update word count every two seconds
WordBasic.ToolsWordCountRecount
Application.OnTime When:=Now + TimeValue("00:00:02"), _
Name:="Florida"
End Sub