Hi Robert R.! That sounds like it would be onerous to dealwith even when the TokenMod update hits. If you'd prefer, theres a little snippet that will just hide all tooltips: !hide-all-tooltips Code: on('ready',() => {
on('chat:message', msg=>{
if('api'===msg.type && /^!hide-all-tooltips(\b\s|$)/i.test(msg.content) && playerIsGM(msg.playerid)){
let who = (getObj('player',msg.playerid)||{get:()=>'API'}).get('_displayname');
sendChat('',`/w "${who}" Hiding all tooltips...`);
let count = 0;
let tokens = findObjs({
type:'graphic'
});
const burndown = () =>{
let t = tokens.shift();
if(t){
if(false === t.get('gm_only_tooltip')) {
++count;
t.set('gm_only_tooltip',true);
}
setTimeout(burndown,0);
} else {
sendChat('',`/w "${who}" Hid <code>${count}</code> tooltips.`);
}
};
burndown();
}
});
});