Hi,
I am trying to make a dropdown list. With 3-4 different choices.
Is it possible to have these choices with a title - and when I choose one a different text will come out?
Example:
Choise 1 - will give text "I am not home"
Choise 2 - will give text "I am home"
Hi Tony, welcome to the forum!
The way to achieve this is using conditional statements in Text Blaze. This functionality is built into dropdown menus and you can use it by following this guide
The snippet below demonstrates how it works:
{note}{formmenu: default=Choice A; Choice B; Choice C; name=choice}{endnote}{if: choice = "Choice A"; trim=right}
When the menu selection is "Choice A", this will show.
{elseif: choice = "Choice B"; trim=yes}
When the menu selection is "Choice B", this will show.
{elseif: choice = "Choice C"; trim=yes}
When the menu selection is "Choice C", this will show.
{endif: trim=left}
Let me know if you have any questions!
Look at that
superb, thank you