Search found 120 matches

by axel_liine
10 Sep 2012 16:16
Forum: General Discussion
Topic: Lemur v 3.2.1
Replies: 6
Views: 1993

Re: Lemur v 3.2.1

Stephmo wrote:Are editor and app 3.21 ok with ipad2 and mbp 2009 2x2,4 ghz osx 10.5.8 ? thanks
Things should work fine on that system.
by axel_liine
04 Sep 2012 08:07
Forum: General Discussion
Topic: Lemur iPad talk
Replies: 1
Views: 803

Re: Lemur iPad talk

Hi,
You need to set up Ableton Live to send MIDI data back to a MIDI port, routed to the Lemur. That happens in the Ableton MIDI preferences.
by axel_liine
24 Aug 2012 08:14
Forum: General Discussion
Topic: SelectInterface() by name?
Replies: 3
Views: 1048

Re: SelectInterface() by name?

Hi,
Indeed, SelectInterface only accepts numerical values at the time. Adding support for interface names as arguments sounds like a good idea, we're adding this to the wishlist and will let you know when it's available.
by axel_liine
21 Aug 2012 15:02
Forum: General Discussion
Topic: Change the interface on a OSC Command
Replies: 1
Views: 794

Re: Change the interface on a OSC Command

Actually, the Lemur supports by default the "/interface" OSC command. Just pass the index of the interface as an argument, with the first interface being zero.

Code: Select all

/interface 0
/interface 1
by axel_liine
19 Aug 2012 21:06
Forum: General Discussion
Topic: # Ports With iConnectMidi
Replies: 3
Views: 1022

Re: # Ports With iConnectMidi

Hi, I'm not familiar with iConnectMidi, it all depends wether the device creates multiple ports on the connected computer, and allows them to be accessed from the iPad at the same time. I couldn't find this information in their manual, you should probably check with the iConnectMidi support to be ...
by axel_liine
16 Aug 2012 21:16
Forum: General Discussion
Topic: How to change osc input port#?
Replies: 4
Views: 7140

Re: How to change osc input port#?

OSC applications are usually able to customize the destination port. What is your use case where you need to change the port ?
Do you have another application running on your iPad using the same port ?
by axel_liine
13 Aug 2012 18:46
Forum: General Discussion
Topic: # Ports With iConnectMidi
Replies: 3
Views: 1022

Re: # Ports With iConnectMidi

Hi,
You'll still be able to connect to 8 sources and 8 destinations : any combination of iConnect ports and Wifi ports.
by axel_liine
10 Aug 2012 22:20
Forum: General Discussion
Topic: "else if" and Monitor Object
Replies: 5
Views: 2694

Re: "else if" and Monitor Object

When working with float values such as 0.11, 0.15, etc, it's a bit hard to test for equality. OSCulator could send 0.15 as something like 0.149999, and the Lemur engine could encode 0.15 as 0.1500001, so the equality test would always fail. You should try and replace equality tests with relative ...
by axel_liine
10 Aug 2012 12:28
Forum: General Discussion
Topic: custom custombuttons
Replies: 1
Views: 709

Re: custom custombuttons

Hi,
Unfortunately this is not currently possible, but this is something we're keeping in mind for a future version.

Cheers,

Axel
by axel_liine
09 Aug 2012 21:02
Forum: General Discussion
Topic: "else if" and Monitor Object
Replies: 5
Views: 2694

Re: "else if" and Monitor Object

The Monitor has no 'x' variable, so that should probably be 'value'. The script should be set to "On Expression", with "value" as the trigger, so that it's run anytime the Monitor's value changes. Also you're using firstof here. It's meant to be use on arrays, and return the index of the first non ...