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 .
×
Create a free account

Macros - "Show in Macro Bar" / "Turn on Macro Bar"

I probably missed it in the documentation; but I did not see how to set these two items: "In Bar" and "Show macro quick bar."  I'm throwing all of my macros into an api script to ease the pain of using them across multiple games; and can see how to set who can use it and if it is a token action. The "Show macro quick bar" is not a major deal but the "In Bar" setting would be really nice! Thanks.
1483887674

Edited 1483888480
The Aaron
Pro
API Scripter
Show macro bar is the only one you have access to. It's on player: player.set('showmacrobar',true) which macros are on the bar is also on the player, but it's read only: var macroids = player.get('macrobar').split(/,/);
Thanks! At least I can knock out that one small step.