Hello all! Title pretty much says it all. A given PC in a game I run has an ability called Spellstrike, which lets him apply the effects of a spell on a melee swing. To accommodate this, I've created individual unique Spellstrike 'attacks' to cover his options, about 8 in total. That's a lot of clutter on a character sheet and a lot of clutter on the macro bar so I'd like to condense that into one dropdown. What I want: Have a dropdown that includes the various possible versions of Spellstrike. He hits a single macro button, it opens a dropdown menu. From the menu, he chooses which spell, and it calls the associated attack from his sheet. What I have: Spellstrike ?{Which spell | Telekinetic Projectile, %{Name|repeating_melee-strikes_$1_ATTACK-DAMAGE} | Acid Splash , %{Name|repeating_melee-strikes_$2_ATTACK-DAMAGE} | Produce Flame, %{Name|repeating_melee-strikes_$3_ATTACK-DAMAGE} } What I get: The menu is created but no dropdown, instead it's an editable field that contains " Telekinetic Projectile, 0 &{template:rolls" and then outputs a somewhat disjointed version of the next entry, in this case Acid Splash, but does indeed output it correctly. I've tried to research the problem and the general consensus seems to be it has something to do with having multiple nested }s and that it breaks the dropdown and the solution involves... escaping HTML? That's when it gets way above my head and I don't understand anything anymore. I've also seen the claim to just use chat buttons instead, but I find those visually displeasing and inelegant, and also don't know how to do those. There's a much-lauded post by Keith Curtis about them but it seems to be written assuming the reader will have APIs and a more advanced understanding of macros and HTML... none of which I have. Is my dream simply impossible? If it is, what's my next-best solution? I can pick apart some of the workings of more advanced macros even if I don't fully understand them, but I don't have a solid foundation so understanding the fundamental principle is helpful. Thank you anyone who knows or offers help!