Search found 19 matches

by fader8
01 Sep 2012 14:00
Forum: General Discussion
Topic: one CC for coarse and fine tune
Replies: 23
Views: 10330

Re: one CC for coarse and fine tune

So it appears that I actually need 4 messages, not two. I read somewhere (I think in this forum) that the first two are CC 98 and 99 to "establish the active parameter" (NRPN), and that regular CC's don't need them. However, it looks like I need NRPN's, not regular 14-bit CC's. hey Phil, We had ...
by fader8
28 Aug 2012 15:47
Forum: General Discussion
Topic: theory to "BANG" out a preset setting/bi-directional control
Replies: 18
Views: 5425

Re: theory to "BANG" out a preset setting/bi-directional con

SB, First, start simple. Pick one simple plugin that you want to control and load it on a channel strip in Logic. In the clicks and ports environment layer, cable the incoming port from Lemur to a channel splitter. Create a new env layer and move your channel strip to it. Create an ornament, name it ...
by fader8
28 Aug 2012 15:28
Forum: General Discussion
Topic: one CC for coarse and fine tune
Replies: 23
Views: 10330

Re: one CC for coarse and fine tune

Phil, If you're sure that the 2 knobs need the same conoller number, then it's likely the coarse knob sends only an MSB value, 0-127, and the fine knob sends a 14 bit pair. The fine knob probably just gets its MSB value from the position of the coarse knob, then tacks on the LSB to the MSB to ...
by fader8
23 Aug 2012 14:12
Forum: General Discussion
Topic: theory to "BANG" out a preset setting/bi-directional control
Replies: 18
Views: 5425

Re: theory to "BANG" out a preset setting/bi-directional con

Hey SBPBK,
Thanks! I've got a big show to get ready for tomorrow, but I'll post a detailed response this weekend.
by fader8
21 Aug 2012 21:57
Forum: General Discussion
Topic: theory to "BANG" out a preset setting/bi-directional control
Replies: 18
Views: 5425

Re: theory to "BANG" out a preset setting/bi-directional con

fader8, can you explain why Logic's OSC implementation is restricted to TouchOSC? Well, it's a start! Conveerting all Logics environment objects and its sequencer to support OSC is a big job. We can only hope that someone at Apple is already making progress on it. Isn't it a bit odd to use ...
by fader8
21 Aug 2012 17:40
Forum: General Discussion
Topic: theory to "BANG" out a preset setting/bi-directional control
Replies: 18
Views: 5425

Re: theory to "BANG" out a preset setting/bi-directional con

In regards to my issue, I just want to clarify a couple things - As far as MIDI-IN is concerned, I am currently mapping everything with my Controller Assignments window rather than using the environment. You're brave! The MIDI going back out to the Lemur sends through the environment, but I do NOT ...
by fader8
13 Aug 2012 21:14
Forum: General Discussion
Topic: "else if" and Monitor Object
Replies: 5
Views: 2697

Re: "else if" and Monitor Object

Thanks Axel, that was the issue. Managed to have Osculator send out big integer numbers and that seems to square the issue. Thanks again.
by fader8
10 Aug 2012 13:31
Forum: General Discussion
Topic: theory to "BANG" out a preset setting/bi-directional control
Replies: 18
Views: 5425

Re: theory to "BANG" out a preset setting/bi-directional con

I do not want to use a "general control" type of template as it is not workflow conducive, +1 to that. As a long time Logic/Mackie Control user, I personally get frustrated with the emulations since they never fully implement all the features of the protocol. While they can aid a particular ...
by fader8
09 Aug 2012 23:42
Forum: General Discussion
Topic: "else if" and Monitor Object
Replies: 5
Views: 2697

Re: "else if" and Monitor Object

OK, thanks. Almost there. Rewriting it to be this: decl text, val; val = value[0]; if (val==.00) text = 'No Song Cued'; else if (val==.02) text = 'Song One'; else if (val==.11) text = 'Song Two'; setattribute(songcue, 'content', text); ...makes the error flag go away. Along with setting the script ...
by fader8
09 Aug 2012 18:13
Forum: General Discussion
Topic: "else if" and Monitor Object
Replies: 5
Views: 2697

"else if" and Monitor Object

Hi! I have Osculator sending me different OSC values depending on the song position of my sequencer. I can pick up those values in Lemur with a monitor object. The message received by Lemur is "/songloaded/value" and its from 0 to 1. That part works just fine. However, I need to translate the value ...