G
Guest
I am trying to write a macro that will allow me to switch between whatever
font I am using and the "Symbol" font with a keystroke. I know what the
macro has to do, but I am unsure of the variables to use and what functions
to call up. I know the macro needs to do this:
If Selection.Font.Name does not = "Symbol"
Then
Save the current font name to "OldFont"
Selection.Font.Name = "Symbol"
Else
Selection.Font.Name = OldFont
End If
I know that that's the bare bones of the script, but I can't seem to make it
work. Can anyone give me any advice? Thanks!
font I am using and the "Symbol" font with a keystroke. I know what the
macro has to do, but I am unsure of the variables to use and what functions
to call up. I know the macro needs to do this:
If Selection.Font.Name does not = "Symbol"
Then
Save the current font name to "OldFont"
Selection.Font.Name = "Symbol"
Else
Selection.Font.Name = OldFont
End If
I know that that's the bare bones of the script, but I can't seem to make it
work. Can anyone give me any advice? Thanks!