Avoiding repeating commands

Discussion, questions and support.
Post Reply
vrod5454
Posts: 20
Joined: Apr 18th, ’18, 02:13

Post by vrod5454 » Dec 17th, ’19, 22:22

Hi,

I have a SEND text expander that gives options to pick from. I would like to then insert a snippet after the user makes their selection. Is there a way to do this so I don't have to repeat the command after every option.

Currently I have this:

Code: Select all

Option 1 ::Lorem ipsum dolor sit amet, consectetur adipiscing elit. %INSERT_.fn_Mark_Important%
/Option 2::Integer hendrerit, quam vel commodo tempor, lacus massa porttitor nibh. %INSERT_.fn_Mark_Important%
/Option 3::Fusce nec tortor in diam viverra commodo. %INSERT_.fn_Mark_Important%
/Option 4:: Pellentesque facilisis volutpat nulla. %INSERT_.fn_Mark_Important%
I'm looking for something like:

Code: Select all

Option 1 ::Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
/Option 2::Integer hendrerit, quam vel commodo tempor, lacus massa porttitor nibh. 
/Option 3::Fusce nec tortor in diam viverra commodo. 
/Option 4:: Pellentesque facilisis volutpat nulla. 
%INSERT_.fn_Mark_Important%
Thanks for your help.
User avatar
Marko
Posts: 1719
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Dec 19th, ’19, 20:47

Code: Select all

%INSERT_Selections%
%INSERT_.fn_Mark_Important%
:?:
vrod5454
Posts: 20
Joined: Apr 18th, ’18, 02:13

Post by vrod5454 » Dec 20th, ’19, 21:52

Got it. Thanks.
Post Reply