Hi all, first time post. I think everything is within guidelines but let me know if there is anything out of order I should rectify. Context I'm making myself a Riddle of Steel character sheet. My knowledge of both HTML and CSS are basically garbage but with these forums and the wiki pages, I've manage to cobble together a few functional and not-altogether-hideous pages. Currently in the project, I am working on a set of buttons at the top of the character sheet that will whisper popular rolls to the characters. For pages with a static set attributes (like core stats), this has been relatively simple. My code looks like this (guts truncated beyond what's necessary to convey the point): <button type="roll" name="attr_BOBattributes" value="/w @{character_name} [STRENGTH](~STtest) [AGILITY](~AGtest)..."> Attributes </button> Yay! There is now a big button labelled "Attributes" at the top of my character sheets. Pretty pink buttons get whispered to the whomever controls the character. Those buttons roll the indicated tests. The Issue I have repeating sections for which I would like the handy dandy whisper button option. Each of the skills in that section has a roll button. How do I include newly created skills in this button whisper? As I see it I have two options: 1) I could scrap the repeating aspect and make a master skill list that will 70% unused by each character as well as displaying a variety of buttons they will never click. Easy, even for my skill set. Just kind of a letdown, not to mention tedious, since I will need to duplicate and tweak the entry I have some 50 times, instead of letting the players fill in their own 5-10. 2) I feel like there is a sheet worker script solution to this problem, but as I said, I've got no real skills in this department and would love--if a sheet worker script will do it--someone to explain it to me as though I am a small child.