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

[Help] Modifying the macro quick bar

Hello community. I wonder if there is an api that let you tweak with your macro quick bar, in a way where you can choose to place the different buttoms in different place of the screen or in lineand be able to see them all.  atm i have to scroll back and forth to see them all. Is not bad but i wonder if there is something that can help me choose where i want them or stacked so all are visible at the same time. thx
1523927530
The Aaron
Pro
API Scripter
You can use a Bookmarklet in Chrome to do this: javascript:(function(){ $("#playerzone .player").css("display", "none"); $("#macrobar_macros").css("white-space", "normal"); $("#macrobar").css("height", "auto"); $("#macrobar_macros .macrobox .btn").each(function(){ $(this).text( $(this).text().replace(/[^:]+: /, $(this).text()[0]+":")); }); $("#initiativewindow").css("width", "100px").parent().css("width", "100px"); })(); Or perhaps the Stylish plugin with a particular style: @-moz-document url-prefix("<a href="https://app.roll20.net/editor" rel="nofollow">https://app.roll20.net/editor</a>") { #macrobar { &nbsp; &nbsp; height: auto } #macrobar_macros { &nbsp; &nbsp; white-space: normal } #macrobar .macrobox { margin-bottom: .4em } #playerzone.showmacrobar { padding-bottom: 90px; } } (you might need to adjust that playerzone part to be further up if you have more than 2 rows.)
thx again kind sir :)
1523971441
The Aaron
Pro
API Scripter
No problem! =D