L
Libcub
I recorded a macro that adds a rightward arrow (U+2192) and then a no-width
optional break. (Macro code is below.) I have 2 shortcut keys assigned to it:
Ctrl+\ and Ctrl+F11. The Ctrl+F11 shortcut key works fine. But the Ctrl+\
shortcut only supplies the arrow character, and not the no-width optional
break. Why the heck is the macro behaving differently depending on which
shortcut key invokes it?
Thanks for any light shed on this!
Macro:
Sub atest()
'
' atest Macro
'
'
Selection.InsertSymbol Font:="Book Antiqua", CharacterNumber:=8594,
Unicode:=True
Selection.InsertSymbol CharacterNumber:=8204, Unicode:=True, Bias:=0
End Sub
optional break. (Macro code is below.) I have 2 shortcut keys assigned to it:
Ctrl+\ and Ctrl+F11. The Ctrl+F11 shortcut key works fine. But the Ctrl+\
shortcut only supplies the arrow character, and not the no-width optional
break. Why the heck is the macro behaving differently depending on which
shortcut key invokes it?
Thanks for any light shed on this!
Macro:
Sub atest()
'
' atest Macro
'
'
Selection.InsertSymbol Font:="Book Antiqua", CharacterNumber:=8594,
Unicode:=True
Selection.InsertSymbol CharacterNumber:=8204, Unicode:=True, Bias:=0
End Sub