1

I have these two menus on google sheet, and I want to change their colour to red and blue. How can I do that?

function onOpen()
{
  var menuItems1 = [{name: "submit new order", functionName: "NewOrder"}];
  var menuItems2 = [{name: 'submit order change', functionName: 'OrderChange'}];
  SpreadsheetApp.getActiveSpreadsheet().addMenu("submit new order", menuItems1);
  SpreadsheetApp.getActiveSpreadsheet().addMenu("submit order change", menuItems2);
}
Shabbir Dhangot
  • 8,642
  • 9
  • 58
  • 78

1 Answers1

1

Its not possible to change a menu item color in apps script

Zig Mandel
  • 19,196
  • 5
  • 24
  • 35