|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
Parameters
Return value
No value is returned.
Description
Call this function to initialize a menu ID of your choice.
After the call of this function, you can add menu items with menu.add.item for example.
The menu ID is a number between 0 and 10000. |
MioScript Sample Code
&menuID = 0
menu.create(&menuID)
menu.add.item(&menuID, 0, "Item 1")
menu.add.item(&menuID, 0, "Item 2")
menu.set(main, &menuID) |
|
|
|