Trying to create a skills drop down macro.. There are tons of examples here, looking far too complex for me.. I believe I am having some html entities issues. The character sheet is D&D 5E by Roll20 that we are using in the Master's Vault I am inserting this text into the macro editor, with Token Action checked. &{template:simple} {{always=1}} ?{Skill|
Acrobatics, /at{selected|acrobatics_roll}|
Animal Handling, animal_handling_roll|
Arcana, arcana_roll|
Athletics, athletics_roll|
Deception, deception_roll|
History, history_roll|
Insight, insight_roll|
Intimidation, intimidation_roll|
Investigation, investigation_roll|
Medicine, medicine_roll|
Nature, nature_roll|
Perception, perception_roll|
Performance, performance_roll|
Persuasion, persuasion_roll|
Religion, religion_roll|
Sleight of Hand, sleight_of_hand_roll|
Stealth, stealth_roll|
Survival, survival_roll
} If I use an unaltered line of Acrobatics, @{selected|acrobatics_roll}, the resulting Skills pop up will be a text field with "Acrobatics, &{template:simple" in it. Clicking submit does make an acrobatics roll, but it spits out the rest of the macro below that line. If I change the @ to /at, the Skills pop up contains a drop down list with two items, Acrobatics and acrobatics_roll. Clicking submit spits out an empty template, and the rest of the contents of the macro, with no roll made. If I replace the last } with } the Skills pop up contains a drop down list with three items, Acrobatics, acrobatics_roll} and Animal Handling. Clicking submit does the same as the last change. So now I replace the | with | and the Skills pop up displays the label for each skill line... Awesome! But wait, clicking submit just outputs a lonely empty simple template. I feel I am so close, but I am boggled..