FutureBasic Logo

<<    Index    >> FutureBasic 5

apple menu   statement



Syntax:
apple menu string$

Description:
This statement inserts one or more items at the top of the Application Menu, and separates them from the existing Application Menu items with a grey dividing line. The string$ parameter contains the text of the item(s); to add multiple items, separate them with semicolons in string$. Certain "meta characters" in string$ have special interpretations; see the menu statement for more information.
After you add items to the Apple Menu, you can use the menu function to detect when the user selects one of the items you've added.
If you execute apple menu more than once, any items you added to the Apple Menu previously will be completely replaced.

Example:
apple menu "About This Program;About Me..."

        Apple Menu Image

See Also:
menu function; menu statement; on menu fn; HandleEvents