Sub AddTextAfterSelection()
Selection.InsertAfter Text:="new text "
End Sub
Thanks for this. But I have like 30 statements that I would paste. So if its in the ribbon, how would it fit?From what I’ve briefly read, I think it might be possible.
https://gregmaxey.com/word_tip_pages/customize_shortcut_menu.html
https://learn.microsoft.com/en-us/office/dev/add-ins/word/
https://support.microsoft.com/en-us...-a-macro-c6b99036-905c-49a6-818a-dfb98b7c3c9c
https://learn.microsoft.com/en-us/o...customizing-word/inserting-text-in-a-document
I’ve only managed to create a new VB macro to insert text after the cursor and add it the ribbon:
Code:Sub AddTextAfterSelection() Selection.InsertAfter Text:="new text " End Sub
Yes i figured this was probably going to be the solution. I'll do this. ThxThe simple answer is that you're not going to be able to do what you want. Just find a clipboard manager that you like using, save those text snippets and set up shortcuts for them (if you want), and train yourself to use them.
What you're asking for just isn't what contextual menus are built to be. You could probably set up 30 different services to do what you want, but it'll be a lot of work and accessing them will be much more cumbersome than just mousing up to a clipboard manager icon in the menubar and choosing the one you want.
I like CopyLess 2 for a clipboard manager. It's free for basic use, but has an in-app purchase for $9 that adds some additional features like unlimited favorites and cloud syncing of your preferences/settings/shortcuts.Yes i figured this was probably going to be the solution. I'll do this. Thx