Difference between revisions of "LlExecuteMenuCommand"

From Second Life Wiki
Jump to navigation Jump to search
m (lsl code tagging)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{LSL_Function|func_id|mode=request|func=llExecuteMenuCommand|sort=llExecuteMenuCommand|p1_type=list|p1_name=menu_sequence
{{LSL_Function|func_id|mode=request
|func_desc=Access a main menu item via a list '''menu_sequence''' . Example:
|func=llExecuteMenuCommand
 
|p1_type=list|p1_name=menu_sequence
|func_desc=Access a main menu item via a list '''menu_sequence'''.
|return_text
|spec
|caveats=Some menu items may not be available for security reasons.
NOTE: Scripts are run on the server so this function is probably impossible. -OddesE Oh
|examples=
<lsl>
llExecuteMenuCommand(["Client","Character","Rebake Textures"]);
llExecuteMenuCommand(["Client","Character","Rebake Textures"]);
or
llExecuteMenuCommand(["Tools","Select My Objects Only",TRUE]);
llExecuteMenuCommand(["Tools","Select My Objects Only",TRUE]);
 
</lsl>
|return_text|spec|caveats|examples|helpers|related|also|notes}}[[Category:LSL_Stub]]
|helpers|related|also|notes}}

Latest revision as of 08:49, 3 April 2008

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

Summary

Function: llExecuteMenuCommand( list menu_sequence );

Access a main menu item via a list menu_sequence.

• list menu_sequence

Caveats

Some menu items may not be available for security reasons. NOTE: Scripts are run on the server so this function is probably impossible. -OddesE Oh

All Issues ~ Search JIRA for related Bugs

Examples

<lsl> llExecuteMenuCommand(["Client","Character","Rebake Textures"]); llExecuteMenuCommand(["Tools","Select My Objects Only",TRUE]);

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

//function void llExecuteMenuCommand( list menu_sequence );