How can we select where to place a created menu - google-apps-script

I've just created a new menu in Google Script (Spreadsheet) but it place it on the end. Just after "HELP". Is there a way how to indicate where I want to put this menu?
Regards,
Rave

No - AFAIK custom menus are always positioned after the Help menu.

Related

How to customize the right click popup menu of a sheet's tab

Is it possible to customize the right click popup menu of the tab of a sheet at the bottom? Specifically, I wish to add to that menu a new menu item, one of my macro names currently available at tools.macros.myMacroName.
If possible, how to accomplish this? Thank you very much!
Not possible sorry.
Your options are any of those features available in the Class Ui. https://developers.google.com/apps-script/reference/base/ui.html.
Your macro/script could be set to act on the active sheet.

Is there a way for a drop down list to open automatically using an anchor point?

In case it matters, I'm using WordPress as my website tool.
Basically this is what I have
<a name="title"></a>[expand title="title" trigclass=noarrow] Various text [/expand]
The anchor point is linked from a menu. Is there something I can add that when the anchor point is clicked, the drop down menu opens up? Either that, or is there another way for this to happen?
I'm very new to programming and I've tried looking on google but to no avail.
I'd appreciate any and all help!
Thanks!
yes there is .. you have to use jquery for that to happen...and instead of anchor ,, use a button with onclick EXPAND function..
Learn jquery thoroughly, it would be very helpful for further programming.

Is it possible to modify the Google Docs/Sheets right-click context menu?

It's well known on how to make a custom upper menu item (https://developers.google.com/apps-script/guides/menus), but can you append a function to the context menu when right clicking a cell or item?
No. Can't do it. There is no class or method to modify the right click context menu.

Custom button with an icon in Google Spreadsheets

Is there a way to create custom button with an icon in Google Spreadsheets? I know I can create custom menu items, but button is more user-friendly.
You cannot add a menu item where you are point out to, but you can add custom Drawings and Images that can trigger a script function. This may even be better as you can position these buttons closer to the data/point of action.

AIR - Disable context menu

I'm building an app with an image upload function. While the uploading process is on I need to disable the context menu (right-click) or at least the items in it.
How to do it?
Thanks.
http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7d00.html
This answers your questions... look at Customizing the context menu paragraph
have you tried with this method? this should remove all the elements in your menu.
Hope this helps