Is it possible to add IDs to the SVGs in the help menu folder?

Hi @jan,

I’m having a similar issue with adding an ID to the button created by the ‘Hide Triggers’ extension in the editor. The button does not come with a unique ID, as seen in the HTML here:

I have tried retrieving it with getElementsByClassName like this:

JS

But the console only prints out the buttons on either side of it (help-button, minimap-button, and tour-button):

… but not the new ‘Hide Triggers’ button. I’m not entirely sure what is causing this, as they all share the menu-button class name. I got similar results trying:

document.querySelectorAll('.menu-button:not(#help-button):not(#minimap-button-toggle):not(#tour-button):not(#vr-button):not(#fullscreen-button)');

… with no luck.

Is there a way to add an ID to this button? If not, is there a way we can add IDs through the Shapespark editor?