Search found 15 matches

by janiliamilanes
31 Oct 2017 20:11
Forum: General Discussion
Topic: Call global static variable or function
Replies: 1
Views: 921

Re: Call global static variable or function

If you creating an expression higher in the hierarchy the objects under will see it,
by janiliamilanes
25 Oct 2017 16:44
Forum: General Discussion
Topic: Quantize input
Replies: 2
Views: 1049

Re: Quantize input

Just fast suggestion (sorry have not looked at your project)--- look at StepSwitch object. If you can sync to DAW, then trigger when Switch changes.
by janiliamilanes
19 Oct 2017 05:10
Forum: General Discussion
Topic: Resources for learning advanced programming of Lemur
Replies: 8
Views: 1876

Re: Resources for learning advanced programming of Lemur

Fine, sorry I don't want to get into a flame war. Maybe having a bad days lately. Maybe it is my terrible English. I use the word "scripting" not at all in a meaning that you and I know it (I do the exact same job as you); nothing with compiled vs interpreted languages, etc. I use it in a way maybe ...
by janiliamilanes
18 Oct 2017 14:12
Forum: General Discussion
Topic: Resources for learning advanced programming of Lemur
Replies: 8
Views: 1876

Re: Resources for learning advanced programming of Lemur

I have seen this thread. It is very interesting. My personal opinion is commercial templates are awesome and Liine should support them directly (like Apple App Store). But as you say there needs to be a way to protect your IP. It is "non-trivial" to build a complex controller. And you have to ...
by janiliamilanes
17 Oct 2017 16:07
Forum: Troubleshooting
Topic: cc implementation help
Replies: 6
Views: 1660

Re: cc implementation help

Yeah so as I said, use bitwise OR to se the bit in an integer
by janiliamilanes
16 Oct 2017 15:39
Forum: Troubleshooting
Topic: cc implementation help
Replies: 6
Views: 1660

Re: cc implementation help

????????

MSB and LSB are about binary numbers.
https://en.wikipedia.org/wiki/Most_significant_bit

"Setting a bit" will change the number.
00000001 is 1
00000010 is 2
00000011 is 3
etc.

Not sure what you want to do.
by janiliamilanes
16 Oct 2017 14:19
Forum: Troubleshooting
Topic: cc implementation help
Replies: 6
Views: 1660

Re: cc implementation help

You want to set the bits in an integer?
I believe Lemur the normal bitwise operators: https://en.wikipedia.org/wiki/Bitwise_operation
To set a bit use bitwise OR

something like

//create your backing store
decl myValue = 0
// set bit 3
myValue = myValue | (1 << 3)
by janiliamilanes
16 Oct 2017 13:47
Forum: General Discussion
Topic: Resources for learning advanced programming of Lemur
Replies: 8
Views: 1876

Re: Resources for learning advanced programming of Lemur

I also use Composer Tools Pro and it's incredible. It changed the way I make music. I am also computer programmer (web dev, php, mostly, some C++), so I can answer question. If you want learn about Lemur...learn computer science. I think people have a dream that Lemur is "simple" and you just ...