User:Icktoofay Kamachi/Sandbox

From Second Life Wiki
Jump to navigation Jump to search
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 used.

• 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