Search found 74 matches

by solconnection
Thu Jul 29, 2010 5:42 pm
Forum: Users' Help Exchange - closed
Topic: No sound but tracks show audio signal movement issue
Replies: 34
Views: 103858

Re: No sound but tracks show audio signal movement issue

this happens to me also :( what can usually cause it is when in arrangement view, you accidentally drag the entire arrangement (because live annoyingly 'selects all' very easily). It is something to do with having automation on the master channel, because if i select the entire arrangement and drag ...
by solconnection
Mon Apr 12, 2010 10:51 pm
Forum: Max For Live
Topic: Get text name of selected device/param?
Replies: 7
Views: 1650

Re: Get text name of selected device/param?

thanks for clearing that up :) much appreciated.

-Dan
by solconnection
Mon Apr 12, 2010 9:17 pm
Forum: Max For Live
Topic: Get text name of selected device/param?
Replies: 7
Views: 1650

Re: Get text name of selected device/param?

thanks palmer, much appreciate your help.

unfortunately the patch you sent me doesn't really work (error: live.object: get: no valid object set) or i am using it incorrectly , but it gives me some interesting objects to look in to/learn about

thanks
-Dan
by solconnection
Mon Apr 12, 2010 12:01 pm
Forum: Max For Live
Topic: Get text name of selected device/param?
Replies: 7
Views: 1650

Re: Get text name of selected device/param?

Surreal wrote:there is an abstraction that does that. i think you might even be using it to do the select parameter bit.

M4L.api.SelectDevice
M4L.api.SelectParameter

thanks for the reply, though my problem is i cant seem to get it to output text values of whatever was selected to a message box or label :(
by solconnection
Sun Apr 11, 2010 4:42 pm
Forum: Max For Live
Topic: Get text name of selected device/param?
Replies: 7
Views: 1650

Get text name of selected device/param?

Hi HI, I am working on a midi patch that remotely controls some knobs, it all works fine, you select the device to control using M4L.api.SelectDevice and the parameter from the output of that using m4L.api.SelectParameter, which is all pretty standard. however i also want to be able to get the text ...
by solconnection
Sat Apr 10, 2010 11:57 pm
Forum: Max For Live
Topic: Handling NRPNs in M4L
Replies: 10
Views: 3695

Re: Handling NRPNs in M4L

Dan, how is your progress?Have you started yet? I a planned to do exactly the same...build an editor for my RME.. sorry for hijacking this thread. Thank you for the tuts on nrpn, highly appreciated. ;) hey mate, glad to hear you have plans for something too. Ive knocked up an interface (for now jus...
by solconnection
Sat Apr 10, 2010 1:11 pm
Forum: Max For Live
Topic: sending MSB / LSB CC data
Replies: 0
Views: 565

sending MSB / LSB CC data

Hi! i am attempting to cobble something quickly together to let me control my moog voyager RME using M4L. Ive successfully been able to control anything that operates on a single CC command but some of the parameters take a MSB/LSB CC (see table below) i was just wondering if anyone had any advice o...
by solconnection
Fri Apr 09, 2010 6:51 pm
Forum: Max For Live
Topic: Handling NRPNs in M4L
Replies: 10
Views: 3695

Re: Handling NRPNs in M4L

Wow, wonderful stuff, thanks! I am trying to do a rough and ready interface for my moog voyager RME (i dont really have the time at all to be working on this project but anyway..). In its midi implementation it has a list of standard CC's it responds to, but some params respond to NRPN , ie. http://...
by solconnection
Thu Apr 08, 2010 6:28 pm
Forum: Tips & Tricks
Topic: snap midi macro to values?
Replies: 2
Views: 1039

Re: snap midi macro to values?

Tone Deft wrote:m4L yes, there are objects like [route] that only pass along values that match its arguments.

without m4L, I don't think you can.
cheers, i think i would be capable of making a max patch for this, was just hoping there might be a quick way to do it within ableton itself.

thanks a lot
-Dan
by solconnection
Thu Apr 08, 2010 5:28 pm
Forum: Tips & Tricks
Topic: snap midi macro to values?
Replies: 2
Views: 1039

snap midi macro to values?

Hi, i was hoping someone might have a good idea on how i can overcome a problem run in to a few times. when you midi map a macro knob, you can set the min and max values that the knobs range should operate within. This is great, but i would somehow like to go further and set up a list of values that...
by solconnection
Fri Dec 18, 2009 8:20 pm
Forum: Max For Live
Topic: trouble accessing value of 2nd inlet in js object :(
Replies: 4
Views: 1431

Re: trouble accessing value of 2nd inlet in js object :(

thanks mate :) i just figured this out myself too... it doesn't work with multipla params (a,b)...your soloution seems on the money. i just got this little bit of code to work, so ill paste it incase anyone else has issues. ok, i worked it out myself. this is the correct solution, note that the inpu...
by solconnection
Fri Dec 18, 2009 7:45 pm
Forum: Max For Live
Topic: trouble accessing value of 2nd inlet in js object :(
Replies: 4
Views: 1431

Re: trouble accessing value of 2nd inlet in js object :(

also, just to pre-empt. having researched this problem, i have seen a solution like this posted // inlets and outlets inlets = 2; outlets = 2; function list(a,b) { if (inlet == 1) // right inlet post(a,"-"); else // left inlet post(b,"\n"); } } which doesn't seem to work for me e...
by solconnection
Fri Dec 18, 2009 4:07 pm
Forum: Max For Live
Topic: trouble accessing value of 2nd inlet in js object :(
Replies: 4
Views: 1431

trouble accessing value of 2nd inlet in js object :(

Hi guys, i am sure this is an easy problem but the tutorial and help file didn't have the information i needed to make this work or i completely missed something. I have made a little test javascript file, and am sending two int's in to it, all i want to do is print the value of both ints from withi...
by solconnection
Thu Nov 12, 2009 4:29 pm
Forum: Max For Live
Topic: patchers within patchers, question about instances/reference
Replies: 4
Views: 1365

Re: patchers within patchers, question about instances/reference

pukunui wrote:You can freeze the device with the little snowflake icon in the lower left hand tool bar of your main device window and it will bundle everything up for you so you can share it.

Cheers


Andrew
awesome, thanks :)
by solconnection
Thu Nov 12, 2009 2:33 pm
Forum: Max For Live
Topic: How do I recieve midi after a Live device
Replies: 3
Views: 1189

Re: How do I recieve midi after a Live device

first, look at the midi tutorials to get the basic functionality to get midi notes working. then, look up the 'send' and 'receive' objects in max help. basically you pack the note up and send it to another patch, that picks it up with a 'receive' object. you will need two patches, one to transmit no...