Files
LSL-PyOptimizer/unit_tests/regression.suite/issue-5.lsl

13 lines
408 B
Plaintext
Raw Normal View History

integer menuChannel = 1;
showDialog(string user, string description, list buttons) {
llDialog(user, description, buttons, menuChannel);
}
default {
state_entry() {
string pageString = " ";
list options = [];
showDialog(llGetOwner(), "Test", ["◀" + " Prev" + pageString, "▼" + " Back", "▶" + " Next" + pageString] + llList2List(options, page * 9, page * 9 + 8);
}
}