Difference between revisions of "User:Icktoofay Kamachi/Sandbox"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
{{LSL_Event
Hi. This is just a little sandbox for me to test wiki stuff. =D
|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* work in this event.
|p1_type=integer|p1_name=handle|p1_desc=The handle of the menu item that was selected.
|p2_type=string|p2_name=name|p2_desc=The name of the menu item that was selected.
|examples=<pre>default {
    state_entry() {
        integer item_handle=llAddMenuItem("Hello!");
    }
    menu(integer handle,string name) {
        llSay(0,name);
        llRemoveMenuItem(handle);
    }
}
</pre>
|mode=request
|self
}}

Latest revision as of 20:29, 17 June 2008

Hi. This is just a little sandbox for me to test wiki stuff. =D