I am trying to code a custom menu for each token. Version 1 of my character sheet stored an amount of information about status's on the character sheet. That was fine for characters, but not adequate for Mooks. There was no way to say (for example) Mooks 1 and 3 are aggressively attacking (and get certain bonus's or penalties to dice rolls) but the other mooks are not. So I am now upgrading the sheets to instead of storing this on the character sheet, it is to instead store this information on the token. I am using status markers to store this information. So for example, when the the Sentry gun is being displayed, the character is aggressively attacking and gets plus three to attacks, but minus 3 to defenses. All good so far, but many of the conditions are a poor match for any of the available icons, so it is difficult for new players to know which symbols match which conditions. Therefore I want a custom menu for each token that when a specific token action is selected, a popup menu appears with a dropdown list that allows the user to select to turn certain options on, and lists the ones that are already on and allow them to be turned off. So for example if the character is already aggressively attacking, the option would be "Aggressive Attack: Off". What I am doing is storing the menu is bar2_max. I am using the other 5 bar values for more conventional things, but was not previously using bar2_max for anything useful. I now store the custom menu in bar2_max, and have the macro retrieve it as follows. !edParse~ Status: ?{@{selected|bar2|max}} So that works as well, no problems. Where I have a problem is that it only works if I DON'T have bar2_link set. I want bar2_value set to @{Wounds} Until I have bar2 linked, I can have my super long menu string in bar2 max. As soon as I link it, it changes to 11223344. I can change it to short values, but I can not change it to long values anymore. I can't figure out why this would make a difference. I could see it if it did not work at all. But can't figure out why it only fails if the attribute is linked. So question number one is, can anybody tell me what is going on. question number two is, can anybody suggest a place to store information linked to a token (not a character). Thanks.