SbDialog
Revision as of 16:52, 24 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
This is a simple replacement function for llDialog. It re-orders the button list so that the button values, as passed to it, display left-to-right, top-to-bottom. It also opens a listen on the specified channel, and returns the handle.
integer sbDialog(key keyAgent, string strMessage, list lstButtons, integer intChannel) {
integer intHandle;
lstButtons =
llList2List(lstButtons, -3, -1) +
llList2List(lstButtons, -6, -4) +
llList2List(lstButtons, -9, -7) +
llList2List(lstButtons, -12, -10);
intHandle = llListen(intChannel, "", keyAgent, "");
llDialog(keyAgent, strMessage, lstButtons, intChannel);
return intHandle;
}