Hi @tatiang ,
Maybe run this in the console and see if it works.
function remove_tooltip () {
var blocks = Blockly.getMainWorkspace().getAllBlocks();
for (var i of blocks) {
i.setTooltip("");
}
}
Blockly.getMainWorkspace().addChangeListener(remove_tooltip);
Note: you have to run this every time before opening your project.
P.S. i’ve made this code from the back of My head, I am not sure it may work.
Edit: just ran a quick test and it works.
Just run the code before the blocks are loaded.
Edit: I did get it to work but I had to keep pasting the script over and over and hitting return. It also only works on a single screen. If I switch screens in Thunkable, the tool tips appear on the other screens.
I appreciate the info! I’d love to see this implemented as a setting in Thunkable accounts.