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!
JavaScript Properties for RGB Panels
-
- Posts: 3
- Joined: Wed Oct 16, 2024 4:37 pm
- Real Name: Dean Scott
I'm in the same boat needing to read the second or end color in a custom RGBscript pattern. I asked this yesterday in the General forum and see that no one has responded to your question for over 6 years! Thanks community. So not helpful. I bet you're a LONG ways past this by now, gave up, or found a different way to get help with the code. I deduced that the variable, rgb, is the first/start color, but await a response as to how to read the second/end color, since there's no explicit variable that I can see for such.
Anyway, just chiming in to refresh this topic.
Anyway, just chiming in to refresh this topic.
- GGGss
- Posts: 3256
- Joined: Mon Sep 12, 2016 7:15 pm
- Location: Belgium
- Real Name: Fredje Gallon
See the updated comment here: https://www.qlcplus.org/forum/viewtopic.php?t=17808
All electric machines work on smoke... when the smoke escapes... they don't work anymore
- mcallegari
- Posts: 4908
- Joined: Sun Apr 12, 2015 9:09 am
- Location: Italy
- Real Name: Massimo Callegari
- Contact:
First and foremost, there's no need to be rude or unpolite in these forums.dascott wrote: ↑Thu Oct 17, 2024 8:55 pm I'm in the same boat needing to read the second or end color in a custom RGBscript pattern. I asked this yesterday in the General forum and see that no one has responded to your question for over 6 years! Thanks community. So not helpful. I bet you're a LONG ways past this by now, gave up, or found a different way to get help with the code. I deduced that the variable, rgb, is the first/start color, but await a response as to how to read the second/end color, since there's no explicit variable that I can see for such.
A work is in progress on GitHub to address this need: https://github.com/mcallegari/qlcplus/pull/1422
You can use the automated builds to experiment with the latest additions.