Search found 11 matches

by fhill2
13 Mar 2015 06:10
Forum: General Discussion
Topic: Editing 2 Lemur project at the same time.
Replies: 0
Views: 387

Editing 2 Lemur project at the same time.

Is this possible to do, I have an iPhone and iPad and want to edit my 2 projects simultaneously. I have duplicated the application, but when I try to open it, it say's the port 8003 is in use.
by fhill2
23 Jun 2012 00:03
Forum: General Discussion
Topic: assigning a .x value to a list.
Replies: 8
Views: 1712

Re: assigning a .x value to a list.

This is my best attempt to assign each item in the OSC arguments to each of the 16 text object's contents I have(in ascending order):

decl i;
for(i=0; i<16;i++);
{
setattribute(textitem,'content',OSC_ARGS));
}

This doesn't compile, can anyone help?
Thanks.
by fhill2
22 Jun 2012 23:36
Forum: General Discussion
Topic: assigning a .x value to a list.
Replies: 8
Views: 1712

Re: assigning a .x value to a list.

Ah, for newbies like me. Don't forget the single quotation's at the start and end of the attribute's content. :oops:
for example.
CORRECT: setattribute(pl0,'content',OSC_ARGS[0]);
INNCORRECT: setattribute(pl0,content,OSC_ARGS[0]);
by fhill2
22 Jun 2012 09:46
Forum: General Discussion
Topic: assigning a .x value to a list.
Replies: 8
Views: 1712

Re: assigning a .x value to a list.

For setting attributes, will it be the same? I have tried: setattribute(textitem1,content,OSC_ARG[0]); Going further, how would I make a loop statement to assign each item in the OSC arguments to each of the 16 text object's contents I have(in ascending order). I have been messing about with lots of ...
by fhill2
21 Jun 2012 10:14
Forum: General Discussion
Topic: Creating a more efficient Lemur template.
Replies: 4
Views: 1272

Re: Creating a more efficient Lemur template.

Yes, I am more concerned about the workload of the network, rather the computer.
If the network became overloaded at one point in time it would create some sort of lag and effect other messages immediately before it im 'guessing'.
Possibly similiar to 'lag' in World of Warcraft. :lol:
by fhill2
21 Jun 2012 06:55
Forum: General Discussion
Topic: Creating a more efficient Lemur template.
Replies: 4
Views: 1272

Re: Creating a more efficient Lemur template.

My current project is designing an iTunes browser using my knowledge Max and Applescripts. I have a grid of 16 columns by 4 rows filled with text objects and a fader to scroll the different tracks. NAME/BPM/KEY/COMMENT. I could set up the data transfer in 2 different ways: 1. Send each text object a ...
by fhill2
21 Jun 2012 01:44
Forum: General Discussion
Topic: Creating a more efficient Lemur template.
Replies: 4
Views: 1272

Creating a more efficient Lemur template.

In OSC specification it says that messages using UDP protocol are always 32bit values. So my assumption is the size of a message isn't relevant to the latency/workload of the network. (As sending 1 as integer value is the same as sending it as a float value) However in regarding to send messages ...
by fhill2
20 Jun 2012 07:26
Forum: General Discussion
Topic: assigning a .x value to a list.
Replies: 8
Views: 1712

Re: assigning a .x value to a list.

Thanks for the reply highmountain, it helped me a lot!
:P
by fhill2
20 Jun 2012 02:11
Forum: General Discussion
Topic: assigning a .x value to a list.
Replies: 8
Views: 1712

assigning a .x value to a list.

Is it possible assign 4 separate switches to - switch1.x==switch[0].... switch2.x==switch[1].... etc. Where switch is an incoming OSC packet of 0 0 1 0 or any combination?
How would I correctly set this up? :oops:
Thanks
by fhill2
26 May 2012 00:32
Forum: General Discussion
Topic: looping without max4live
Replies: 0
Views: 667

looping without max4live

I am trying to set up a pad to trigger a four bar loop from the lemur, I have setup a observer in Max for Live of the float value "playingpos' property which is streaming to a global variable. (Is this actually possible ?) I believe these are the steps I need to make this loop work? For some reason ...