Search found 11 matches

by Keithlostracco
08 Jan 2013 22:56
Forum: General Discussion
Topic: LemurLoader source available?
Replies: 2
Views: 816

Re: LemurLoader source available?

It's true there aren't a lot of lemur users in the TD community but I've been using Lemurs (legacy) with Touch for about 4 years now and still wouldn't want to use anything else until some comes out with a nice hardware OSC controller (with real faders and buttons) Lemur is nice for customization ...
by Keithlostracco
08 Jan 2013 22:07
Forum: General Discussion
Topic: LemurLoader source available?
Replies: 2
Views: 816

LemurLoader source available?

Hello, I'm wondering if the source code for the LemurLoader Max external is or could be made available. I would like to load a module from Touch Designer rather than Max is this possible?

thanks
Keith
by Keithlostracco
23 Feb 2012 05:22
Forum: Troubleshooting
Topic: Lemur Daemon startup error
Replies: 3
Views: 2086

Lemur Daemon startup error

We just installed Windows 7 on a Macbook pro because of some problems we've been having with Ableton and Massive and now we're getting this error "Unable to use Direct3D, please install Directx" on bootup when windows tries to load the Lemur Daemon. I uncheck the start at boot check box in the Lemur ...
by Keithlostracco
16 Feb 2012 08:17
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

I got it. It was actually quite simple I just had to create 2 more variables v1, v2 where v1 was the value being sent out to the first cc in the else part of the if statement and v2 = 127-v1 which is cc2. simple! else { v1 = floor(abs(s > 0 ? (1-ramp_x[n])*127 : ramp_x[n]*127)); v2 = 127-v1; ctlout ...
by Keithlostracco
16 Feb 2012 07:20
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

Hi sorry to bug you again but I'm trying to modify the script so it can send 2 values, a rising value and a diminishing value. I'm part way there and it works with the first value rising and the second diminishing but when I press the switch a second time it the first value diminishes properly but ...
by Keithlostracco
25 Dec 2011 23:29
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

The On Midi script worked also. Now Ableton can set the switch state. Thanks for the coding tip I had the feeling that the Lemur manual didn't have everything. I am noticing that sometimes when pressing the switch in the middle of a fade the the value will jump. I can't get it to happen consistently ...
by Keithlostracco
25 Dec 2011 17:56
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

Awesome it works perfectly. Later today when I have more time I'll look at it closer so I can understand more clearly what you've done. One thing I realized is that I need the switches to update their state when Ableton changes after we select a new kapture preset. I was thinking of writing another ...
by Keithlostracco
25 Dec 2011 03:43
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

Thanks for taking a look. When you say use the OnFrame function are you talking about the way the script is executed? Do you mean I can get the OnFrame script to stop running by relating to a global variable? Best is to use the array(vector) function Do you mean nonnull? I can't find an array(vector ...
by Keithlostracco
24 Dec 2011 22:35
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Re: Ramp switches value

So I have somewhat of solution but it is far from ideal. I'm using switches to trigger faders and then I have a script running every frame and a couple of if statements for every switch/fader. I wouldn't mind using faders to actually send the controller data (and the switches to trigger the faders ...
by Keithlostracco
24 Dec 2011 08:41
Forum: General Discussion
Topic: Ramp switches value
Replies: 10
Views: 2513

Ramp switches value

I'm using switches to control sends in ableton via midi. Basically a switches object with 30 switches is opening closing 30 sends. I found after connecting some of the switches that I was getting clicks from the send opening so quickly so I've been attempting to write a script that will ramp up a ...