When using selectors as a component of a MessageBox the values are displayed in a random order when rendered in the GUI. Is this expected or a bug?
Code
local function attributeTimings()
local attList ={["Shape"]=8, ["Control"]=7, ["Focus"]=6, ["Beam"]=5, ["Color"]=4, ["Gobo"]=3, ["Pos"]=2, ["Dim"]=1}
local options = {
icon = "time",
backColor = "Global.PartlySelected",
title = "Attribute Cue Timings",
message = "Set Attribute Fade / Delay Times for the current cue",
commands = {{ value = 1, name = "Ok" }, { value = 0, name = "Cancel" } },
inputs = {{ name = "Fade Time", value = "" },{ name = "Delay Time", value = "" },},
selectors = {{ name="Attribute", selectedValue=1, values=attList, type=1}},
}
local r = MessageBox(options)
Display More