Custom script not appearing in menu

Hi,

Script newbie question: I added a .js script in the Application Support/FMOD Studio/Scripts folder on OSX. It does not show up in my scripts menu in FMOD Studio. How do I call it or at least see it in the menu? I tried this:

studio.menu.addMenuItem({
name: “Scripts\Hello World”,

execute: function () {
    console.log("Hello World");
}

});

Assuming that the raw version of your script that appears when I check your post’s edit history is accurate, it looks like you’re using the wrong form of quotation marks around your menu item’s name: “” instead of "". Once I changed those, your script correctly generated a “Scripts” submenu and a “Hello World” menu item.

Got it to work thank you!!