Search found 5 matches

by Westbam
07 Nov 2017 01:49
Forum: General Discussion
Topic: Turn on a button for X seconds
Replies: 3
Views: 1483

Re: Turn on a button for X seconds

Wow, I think I understand it, and learned some new tricks about the scripting.
So the expressions keep on monitoring the values, regardless if you do anything with the button.

Thank you soo much, spend too much time in trying to solve this one.
by Westbam
03 Nov 2017 16:55
Forum: Troubleshooting
Topic: Double condition (if x=1 and y=1 then z=1)
Replies: 2
Views: 3191

Re: Double condition (if x=1 and y=1 then z=1)

I know it is late, but for the others (and this is in the manual!)

Code: Select all

if (x==1 && y==1){
 z = 1;
}
You need to declare X, Y and Z somewhere.

Note the == for comparing. && means and, || means or.
by Westbam
03 Nov 2017 16:30
Forum: General Discussion
Topic: Turn on a button for X seconds
Replies: 3
Views: 1483

Turn on a button for X seconds

I am have some effects, that really only need to last a few seconds. And I if I forget to turn it off, well, lemur can do that for me. But I am not able to turn a button of after X amount of time. I tried to make it with a canvas overlay, send to front, to catch the clicks. I figured I made 2 ...
by Westbam
30 Oct 2017 13:44
Forum: General Discussion
Topic: Double Preset faders to simulate DMX lighting mixer
Replies: 8
Views: 4034

Re: Double Preset faders to simulate DMX lighting mixer

Make 24 faders... I am sorry, but I do not understand what you are asking.
Nobody understood the question, that is why nobody answered you.

or are you looking for something that can read your midi/osc and translate it back to DMX?
by Westbam
29 Oct 2017 15:32
Forum: Introductions
Topic: Hallo From the Netherlands
Replies: 0
Views: 709

Hallo From the Netherlands

Using Lemur to control a custom piece of software Raspberry Pi box, freaking awesome.
Decided to take a few steps further, diving in the mysterious canvas object.
Need some help on the final details. (clamping to be more precise).