Page 1 of 1

Avoiding repeating commands

Posted: Dec 17th, ’19, 22:22
by vrod5454
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.

Re: Avoiding repeating commands

Posted: Dec 19th, ’19, 20:47
by Marko

Code: Select all

%INSERT_Selections%
%INSERT_.fn_Mark_Important%
:?:

Re: Avoiding repeating commands

Posted: Dec 20th, ’19, 21:52
by vrod5454
Got it. Thanks.