Difference between revisions of "User:Icktoofay Kamachi/LSL Wishlist/menu"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL_Event |event=menu |event_id=-1 |event_desc=Triggered when a custom pie menu item is used. |event_footnote=Not Implemented - feature request. Also, the llDetected functions *will* wor...)
 
m
Line 2: Line 2:
|event=menu
|event=menu
|event_id=-1
|event_id=-1
|event_desc=Triggered when a custom pie menu item is used.
|event_desc=Triggered when a custom pie menu item is selected.
|event_footnote=Not Implemented - feature request. Also, the llDetected functions *will* work in this event.
|event_footnote=Not Implemented - feature request. Also, the llDetected functions *will* work in this event.
|p1_type=integer|p1_name=handle|p1_desc=The handle of the menu item that was selected.
|p1_type=integer|p1_name=handle|p1_desc=The handle of the menu item that was selected.

Revision as of 21:00, 17 June 2008

Emblem-important-yellow.png LSL Feature Request
The described event does not exist. This article is a feature request.

Description

Event: menu( integer handle, string name ){ ; }

Triggered when a custom pie menu item is selected.

• integer handle The handle of the menu item that was selected.
• string name The name of the menu item that was selected.

Not Implemented - feature request. Also, the llDetected functions *will* work in this event.

Examples

default {
    state_entry() {
        integer item_handle=llAddMenuItem("Hello!");
    }
    menu(integer handle,string name) {
        llSay(0,name);
        llRemoveMenuItem(handle);
    }
}

Deep Notes

Signature