JavaScript Properties for RGB Panels
Posted: Tue May 01, 2018 6:08 am
I am using QLC Plus 4.11 for controlling a RGB LED Panel with my own javascripts.
While mostly successful, I can not read the variable in the push statement when it is
type "range". type "list" works fine.
algo.arrowHt = 3;
algo.properties.push("name:arrowHt|type:range|display:ArrowHeight|values:1,5|write:setArrowHt|read:getArrowHt");
algo.setArrowHt = function(_ht)
{
algo.arrowHt = _ht;
};
algo.getArrowHt = function()
{
return algo.arrowHt;
};
a simple assigment in the function that generates the algo.rgbMap does not work:
var yDia = algo.arrowHt;
and lastly, 2 other hopefully easy questions:
how to i read the user selected start and end colors?
for the push statements for property types "integer" and "string" , do i eliminate the "|values:" attribute entirely or
include it as i just wrote without any entries for values?
thanks much!
While mostly successful, I can not read the variable in the push statement when it is
type "range". type "list" works fine.
algo.arrowHt = 3;
algo.properties.push("name:arrowHt|type:range|display:ArrowHeight|values:1,5|write:setArrowHt|read:getArrowHt");
algo.setArrowHt = function(_ht)
{
algo.arrowHt = _ht;
};
algo.getArrowHt = function()
{
return algo.arrowHt;
};
a simple assigment in the function that generates the algo.rgbMap does not work:
var yDia = algo.arrowHt;
and lastly, 2 other hopefully easy questions:
how to i read the user selected start and end colors?
for the push statements for property types "integer" and "string" , do i eliminate the "|values:" attribute entirely or
include it as i just wrote without any entries for values?
thanks much!