Details
-
Defect
-
Status: Closed
-
Minor
-
Resolution: Not Applicable
-
None
-
.
Description
If you create a button yourself with the name "Ignore" (case sensitive) there is also no chat generated as a result of pressing this button.
Reported via an edit to the LSL documentation.
default
|
{
|
state_entry()
|
{
|
llListen(-1,"","","");
|
}
|
listen(integer a, string b, key c, string d)
|
{
|
llSay(0, d);
|
}
|
touch_start(integer c)
|
{
|
llDialog( llDetectedKey(0), "There is also no chat generated as a result of pressing this button.",
|
["Ignore","Ignore","Ignore","Ignore"], -1);
|
}
|
}
|