Refire snippet using {key} in browser or {snippet} function fire drop and fire in browswer

I would like a way for a snippet to filter/run different snippets, but in the browser for click automations. Example of having the snippet type out the snippet in the correct web browser field, but this does not refire textblaze.

{formmenu: name=evalChoice; default=none; none; Cervical; Shoulder_L; Shoulder_R; TSA_L; TSA_R; RTCr_L; RTC_R; Lumbar; LumbarRadic; Knee_L; Knee_R; TKA_L; TKA_R; ACLRL; ACLRr; Ankle_L; Ankle_R}

{if: evalChoice = "Cervical"}
{key: .}{key: A}{key: u}{key: t}{key: o}{key: C}{key: e}{key: r}{key: v}{key: i}{key: c}{key: a}{key: l}
{elseif: evalChoice = "Shoulder_L"}
{key: .}{key: A}{key: u}{key: t}{key: o}{key: S}{key: h}{key: o}{key: u}{key: l}{key: d}{key: e}{key: r}{key: L}
{elseif: evalChoice = "Shoulder_R"}
{key: .}{key: A}{key: u}{key: t}{key: o}{key: S}{key: h}{key: o}{key: u}{key: l}{key: d}{key: e}{key: r}{key: R}
{endif}

Hello Peter, welcome to the community!

You can achieve this by using the {import} command! For example:

{formmenu: name=evalChoice; default=none; none; Cervical; Shoulder_L; Shoulder_R; TSA_L; TSA_R; RTCr_L; RTC_R; Lumbar; LumbarRadic; Knee_L; Knee_R; TKA_L; TKA_R; ACLRL; ACLRr; Ankle_L; Ankle_R}

{if: evalChoice = "Cervical"}
{import: AutoCervical}
{elseif: evalChoice = "Shoulder_L"}
{import: AutoShoulderL}
{elseif: evalChoice = "Shoulder_R"}
{import: AutoShoulderR}
{endif}

1 Like

:clap: :clap: :clap: :clap: Thank you!