1

I'm adding main menu items to my application. But, they get added only after the default 'Edit' menu item.

new_menu = Ti.UI.createMenu()
fileItem = new_menu.addItem('File')
settingsItem = new_menu.addItem('Settings')

Ti.UI.setMenu(new_menu)

This is the result: enter image description here

Obviously, I want 'File' to come before Edit. I'd like to remove 'Edit' and 'Window' if possible. How do I do this?

Shrihari
  • 105
  • 2
  • 10

1 Answers1

1

Looks like it is an open issue: https://github.com/TideSDK/TideSDK/issues/112

Charles Brandt
  • 981
  • 10
  • 13