Search found 48 matches

by Anton
05 Nov 2012 22:23
Forum: Troubleshooting
Topic: switch array
Replies: 1
Views: 744

Re: switch array

Switch.x then relace the i with the switch or pad.
So Pad.x[0]gives younthe adres of the first pad .x[1] the second etc
by Anton
04 Nov 2012 18:41
Forum: General Discussion
Topic: [solved] comparing strings
Replies: 2
Views: 911

Re: comparing strings in an array

ofcourse. Thanks Macciza.
by Anton
04 Nov 2012 07:31
Forum: General Discussion
Topic: [solved] comparing strings
Replies: 2
Views: 911

[solved] comparing strings

hi, I have an incoming stream of names on an OSC adress. I would like to know if the last 2 names received are the same. I wrote the following code to find that out: decl i; decl z; i= (number++)%2; //modulo between 0 and 1 everytime a resource is changed. z[i]=OSC_ARGS; //put current name in array ...
by Anton
25 Oct 2012 07:32
Forum: General Discussion
Topic: question: adding control elements using another language
Replies: 18
Views: 3795

Re: question: adding control elements using another language

this is super interesting work you guys are doing! keep us up to date.
by Anton
22 Oct 2012 08:04
Forum: Troubleshooting
Topic: Newbie needs some help
Replies: 1
Views: 767

Re: Newbie needs some help

The manual is on this page http://liine.net/en/support/lemur The locking of axis is meant so only one of the 2 cc's gets send at a time. Then use the midi learn function on your tool to use it, no need to do anything in lemur itself. Unless your software doesnt have a way to easily assign cc's. In ...
by Anton
17 Oct 2012 17:54
Forum: General Discussion
Topic: combining strings
Replies: 0
Views: 638

combining strings

Hi,
Is it possible to take 2 strings and merge them into one?
foo='\someadress\inoscland\'
bar='inside\x'

foobar=interlace(foo,bar)

this would result in \someadress\inoscland\inside\x

this doesnt work for me unfortunatly. does anybody know another way?
by Anton
16 Oct 2012 14:05
Forum: Troubleshooting
Topic: Change Color of Faders & CustomButtons
Replies: 4
Views: 1423

Re: Change Color of Faders & CustomButtons

it would be great for future users if you post your soluution here too!
by Anton
16 Oct 2012 09:21
Forum: Troubleshooting
Topic: VPN & Lemur
Replies: 0
Views: 779

VPN & Lemur

Hi Everybody, Has anybody gotten lemur to work over VPN? I have got most things working except for the midi targetting things. This means for example that the editor doesnt see the iPad over VPN but it can connect with it fine by directly going to its IP. OSC stuff transmits fine too, only midi is ...
by Anton
13 Oct 2012 22:19
Forum: Troubleshooting
Topic: Oscout using a variable as (part) of the adress
Replies: 1
Views: 871

Re: Oscout using a variable as (part) of the adress

And a second question. Is there a way to change the osc in for a fader dynamically?
by Anton
13 Oct 2012 14:25
Forum: Troubleshooting
Topic: Oscout using a variable as (part) of the adress
Replies: 1
Views: 871

Oscout using a variable as (part) of the adress

Using script it is possible to send out a osc message with oscout. Its syntax is oscout(target,adress,value) oscout(0,'/foobar', x ) would send rhe osc message /foobar/x to target 0 Is it possible to have both a string and a variable as part ofthe adress? For example oscout(target,'/foobar/'Menu ...