Settings Menu Item

From MSX - Wiki
Revision as of 10:19, 15 January 2021 by Benzac (talk | contribs) (Created page with "It is possible to add the application settings to your menu by setting the <code>type</code> property of a menu item to <code>"settings"/code>. This feature is available since...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

It is possible to add the application settings to your menu by setting the type property of a menu item to "settings"/code>. This feature is available since version 0.1.0. Please see following code example.

Example[edit]

Screenshot[edit]

Example Screenshot (Start Action)

Code[edit]

{
    "headline": "My Menu",
    "menu": [{
            "label": "My Menu Item"
        }, {
            "type": "separator"
        }, {
            "type": "settings"
        }]
}

Demo[edit]