Search found 558 matches

by Surreal
Fri Mar 04, 2011 11:40 pm
Forum: Max For Live
Topic: 8.2.2 b4 and new Live pack content
Replies: 24
Views: 4084

Re: 8.2.2 b4 and new Live pack content

Are the new devices marked in anyway as new or anything? I don't poke around the abstractions too often, so I have a hard time telling.
by Surreal
Mon Feb 21, 2011 2:44 pm
Forum: Max For Live
Topic: Request M4L chord app
Replies: 11
Views: 2102

Re: Request M4L chord app

That shouldn't be to tough to make as you have it there. there are a whole lot more possibilities for chords than you have there though. I made a chord effect that makes sound based on the root played to the track, but not that you have diagrammed. Again, you should give it a shot, it is a reasonabl...
by Surreal
Wed Feb 16, 2011 6:07 pm
Forum: Max For Live
Topic: Imposing functions on tracks by track name
Replies: 2
Views: 689

Re: Imposing functions on tracks by track name

yes you can. track has a name property. http://www.cycling74.com/docs/max5/refpages/m4l-ref/m4l_live_object_model.html Iterate through all of the tracks and stop anyone with the appropriate name. the thing you will fight is QUICKLY doing this. it won't be terrible, but scaling is an issue I always w...
by Surreal
Mon Feb 07, 2011 11:31 pm
Forum: Max For Live
Topic: Foreseeing midinotes in m4l
Replies: 4
Views: 1057

Re: Foreseeing midinotes in m4l

I assume you mean prerecorded midi.

you would want to select all notes in the clip, get the notes, then display them in (or ahead of) time.

select_all_notes
get_selected_notes
(magic)

LOM

I do something like this in javascript for clipstep, but with straight up max, i can only tell you the theory
by Surreal
Sun Feb 06, 2011 11:00 pm
Forum: Max For Live
Topic: Muting a Specific MIDI note in a MIDI Clip?
Replies: 5
Views: 1022

Re: Muting a Specific MIDI note in a MIDI Clip?

whoa...

I think the easiest way through M4L would be to actually replace the note with a muted note of otherwise equal values.
by Surreal
Sun Feb 06, 2011 6:47 pm
Forum: Max For Live
Topic: Clip emptier
Replies: 8
Views: 1702

Re: Clip emptier

I would suggest trigger on stop. an empty clip wouldn't make any sound anyway. following the playhead is pretty unreliable. Try it, maybe it will work for you, but you cannot guarantee that the playhead will hit the end of the clip, ever.
by Surreal
Sun Feb 06, 2011 3:56 pm
Forum: Max For Live
Topic: Clip emptier
Replies: 8
Views: 1702

Re: Clip emptier

HA there are conditions.

i suggest you build the empty logic first.


when you say "not until the sequencer has finished" do you mean the set stopped, or the clip stopped, or the playhead reached the end of the clip?
by Surreal
Sun Feb 06, 2011 3:54 pm
Forum: Max For Live
Topic: Clip emptier
Replies: 8
Views: 1702

Re: Clip emptier

I think it would be as simple as

call select_all_notes
call replace_selected_notes
call notes 0
call done

should be pretty straightforward if you don't need any conditions.
by Surreal
Wed Feb 02, 2011 4:55 am
Forum: Max For Live
Topic: thispatcher window commands
Replies: 8
Views: 1451

Re: thispatcher window commands

well look at that. pukunui === Andrew Pask. silly me. I thanked you 'both' somewhere.
by Surreal
Tue Feb 01, 2011 11:09 pm
Forum: Max For Live
Topic: thispatcher window commands
Replies: 8
Views: 1451

Re: thispatcher window commands

no dice, eh?
by Surreal
Mon Jan 31, 2011 11:28 pm
Forum: Max For Live
Topic: Selecting Active Clip with M4L
Replies: 6
Views: 1393

Re: Selecting Active Clip with M4L

That's up to you really. The logic your patch basically is your patch. "highlighted_clip_slot" is what you would want to set to 'select' the clipslot. I don't know what you have and have not done, but the M4L tuts in Live outline the basics of getting setting and observing live objects. af...
by Surreal
Mon Jan 31, 2011 7:09 pm
Forum: Max For Live
Topic: Selecting Active Clip with M4L
Replies: 6
Views: 1393

Re: Selecting Active Clip with M4L

Get "playing_slot_index"