Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Token Bar/Bubbles

I know we can now access and show a 4th token bar/bubble, but is it possible to deliberately show less than 3 if you're a GM? Ie. if I have a token that I only want to show the one bubble above (say bar1, the green bubble) is there an api command to disable showing the other 2? (rather than have 2 empty bubbles up there beside the green one) Thanks
Not through Roll20 natively, but you could use the Stylus browser extension to hide the other two bubbles. You would have to have each of your players install the extension and code (there's instructions in my linked thread for that) as it only affects the computer that it is installed on. Hide the Bar1 bubble: #radial-menu > div.button.button-3 { display: none !important; } Hide the Bar2 bubble: #radial-menu > div.button.button-4 { display: none !important; } Hide the Bar3 bubble: #radial-menu > div.button.button-5 { display: none !important; } In the code, button-1 is the cogwheel to open the token settings, and button-2 is the Status Marker button.
Interesting, I'll have to check that out. Thanks!