Search found 426 matches

by amounra93
Sat Nov 27, 2010 12:42 am
Forum: Max For Live
Topic: LOM propeties vs functions
Replies: 2
Views: 774

Re: LOM propeties vs functions

What he said. But more to the point, its going to be tough to rap your head around without examining the base level of all the API stuff: Python. If you have a look at the uncompiled Python scripts, you will see that all the Functions for each Class in the controller script will be available as func...
by amounra93
Fri Nov 19, 2010 2:32 am
Forum: Max For Live
Topic: Monomodular Thread (b994: Max6 Compatibility)
Replies: 86
Views: 29598

Re: Monomod Thread (b932, Monotes)

Livid was gracious enough to send me an Ohm64 to write the custom Python script for Ableton. Its currently in beta, but should be released in some form or another in the next week or so (I've been too busy up until now to complete the details). Its completely functional as a Monomod controller, alth...
by amounra93
Wed Nov 17, 2010 10:43 pm
Forum: Max For Live
Topic: save coll with liveset
Replies: 11
Views: 1738

Re: save coll with liveset

I use the "has_clip" observer. "live_set tracks n clip_slots n has_clip".
by amounra93
Wed Nov 17, 2010 7:15 pm
Forum: Max For Live
Topic: save coll with liveset
Replies: 11
Views: 1738

Re: save coll with liveset

@ prebentious. Olsen is talking (I think) about the js solution I mentioned earlier in the thread. I'm also working on another similar, simpler solution. It is not possible to store the contents of a coll via pattr by merely linking it to the coll. Manipulation is required (e.g. the above solution, ...
by amounra93
Wed Nov 17, 2010 3:17 am
Forum: Max For Live
Topic: save coll with liveset
Replies: 11
Views: 1738

Re: save coll with liveset

Whatcha trying to do exactly? I am writing a js right now that will deal with this a little more elegantly and simply for my own uses. I don't think it will be too difficult to do, now that I'm looking at it (I've been putting this off for months, its about time that I got around to it). Stay tuned....
by amounra93
Tue Nov 16, 2010 6:48 pm
Forum: Max For Live
Topic: M4L - MIDI swing device?
Replies: 10
Views: 1574

Re: M4L - MIDI swing device?

There is a fairly universal one in most of the Monomodular client patches (Plinko, TR256, Polygome, etc). Its pretty easy to use as-is, or you could modify it to suit your own purposes. You can either save this as an abstraction or put it in an empty patcher. The first inlet takes an integer between...
by amounra93
Tue Nov 16, 2010 7:10 am
Forum: Max For Live
Topic: save coll with liveset
Replies: 11
Views: 1738

Re: save coll with liveset

Hey O,

I think there is a javascript workaround...I've been meaning to try it out, but (as you know) time has been tight lately. Let me know how you get on:

http://cycling74.com/forums/topic.php?id=17008

Cheers :)

a
by amounra93
Tue Nov 02, 2010 10:34 pm
Forum: Max For Live
Topic: Monomodular Thread (b994: Max6 Compatibility)
Replies: 86
Views: 29598

Re: Monomod Thread (b932, Monotes)

Cool :) Hope you like it, lemme know how you get on. Monomodular is up to version b94 now, and will support the Livid Ohm64 when I make the next major beta release. I don't update much here these days, but you can stay abreast of current versions and changes at my blogsite, see my signature. Cheers :)
by amounra93
Fri Oct 29, 2010 2:13 am
Forum: Max For Live
Topic: What's Max/Api fastest clock
Replies: 19
Views: 2332

Re: What's Max/Api fastest clock

There's a 100ms refresh latency in the python scripts (afaik). Add OSC conversion and another app and you got even more of a mess. Even UDP takes about 10ms. This is not inherent latency in the Python scripts. It is a workaround used in the LiveOSC implementation in order to send/receive commands f...
by amounra93
Sat Oct 16, 2010 10:39 pm
Forum: Max For Live
Topic: delete clips patch.
Replies: 7
Views: 1618

Re: delete clips patch.

If there is a command in the Mackie Control repertoire (which I think there is) then you should be able to do this with a Python script...I'll try to check on this when I get a chance.

Cheers.
by amounra93
Tue Oct 12, 2010 5:19 am
Forum: Max For Live
Topic: Using MidiMap from the API in m4l
Replies: 6
Views: 1260

Re: Using MidiMap from the API in m4l

You'll do better leaving stuff in Python that can stay there. It is much more responsive. You can, however, use the m4l access to the API to gather information to display in those windows you're talking about. Have a look at my LCD project....I found some ways to forward the parameter information fr...
by amounra93
Mon Oct 11, 2010 10:45 pm
Forum: Max For Live
Topic: CAN SOMEONE SELL ME MAX FOR CHEAP?
Replies: 8
Views: 1520

Re: CAN SOMEONE SELL ME MAX FOR CHEAP?

Unless of course you're referring to being unable to create executables, iirc that is also not possible with Max
You didn't. Max is capable of creating stand-alone applications.

cheers.
by amounra93
Fri Oct 08, 2010 2:25 am
Forum: Max For Live
Topic: controlling a device with sysex and low latency - possible?
Replies: 2
Views: 574

Re: controlling a device with sysex and low latency - possible?

Leigh Hunt has created externals that allow direct access to MIDI ports via m4l. http://web.mac.com/leighhunt/iWeb/Site/downloads.html Cheers :) edit:: sorry, since you are using Bomes, I guess you are on PC. The above externals only work on OSX. There is another solution that some of us came up wit...
by amounra93
Sun Oct 03, 2010 9:32 am
Forum: Max For Live
Topic: JavaScript, LiveAPI, and device/object removal
Replies: 7
Views: 1487

Re: JavaScript, LiveAPI, and device/object removal

What versions did this start with? I haven't updated to 8.2 yet....
by amounra93
Sun Oct 03, 2010 8:32 am
Forum: Max For Live
Topic: Proper path for mixer_device children in JavaScript
Replies: 2
Views: 647

Re: Proper path for mixer_device children in JavaScript

track_send[num][i].goto("live_set", "tracks", num, "mixer_device", "sends", i); Straight from one of my scripts, so I know it works. I'm using goto, but the path is the same. It looks like you are doing it right, make sure that each element is an individual s...