You should set the custom unit style to something like %0.6f if you want 6 digits, here is an example with 3:
<pre><code>
----------begin_max5_patcher----------
303.3ociRssaBCCC84juhJKs25pJrAB1uxzTUJ3BAklTk3VAB0+8kKsCl1XZ
ujDe7wGGejuxYPs4L5fr2xdOiwtxYrHT.fMEyfVw4cJgKRCTxArP22FXkmxO ...
Search found 95 matches
- Sun Feb 24, 2013 5:30 pm
- Forum: Max For Live
- Topic: Can live.number display more than 2 decimal points?
- Replies: 4
- Views: 1484
- Tue Feb 22, 2011 2:27 pm
- Forum: Max For Live
- Topic: reloading externals?
- Replies: 3
- Views: 936
Re: reloading externals?
pid is right, you have to relaunch Max/Live with C compiled externals. JavaScript objects can be reloaded on the fly (there's even a global property called autowatch for that), and for Java based objects, you just need to reinstantiate the mxj object.
- Thu Jul 08, 2010 6:02 pm
- Forum: Max For Live
- Topic: setting live.numbox min and max?
- Replies: 4
- Views: 1178
Re: setting live.numbox min and max?
You can't dynamically change the range. This would destroy the automation.
- Wed Mar 03, 2010 9:52 pm
- Forum: Max For Live
- Topic: live.numbox sometimes will not allow drag or input changes
- Replies: 4
- Views: 1290
Re: live.numbox sometimes will not allow drag or input changes
Could you post an example?
- Wed Mar 03, 2010 9:49 pm
- Forum: Max For Live
- Topic: I want to add a comma after the first element of a list
- Replies: 6
- Views: 1807
Re: I want to add a comma after the first element of a list
It's for line/line~/curve~, isn't? I would say that 99% of the time this is not what you want to do, using trigger or a wildcard in a message box ($1), will do the trick. Anyhow here is an example:
<pre><code>
----------begin_max5_patcher----------
347.3ocyTssaCBCC84vWQTdlUw0BZusui0poTvqMSPBhDjnqp ...
<pre><code>
----------begin_max5_patcher----------
347.3ocyTssaCBCC84vWQTdlUw0BZusui0poTvqMSPBhDjnqp ...
- Wed Mar 03, 2010 11:17 am
- Forum: Max For Live
- Topic: announcement: Live and Max for Live workshop in Munich
- Replies: 0
- Views: 726
announcement: Live and Max for Live workshop in Munich
The Bayerische Theaterakademie (Bavarian Theatre Academy) in Munich organizes a Ableton Live & Max for Live -Workshop from March. 12.-14.
The workshop is divided in two parts:
1) Fri. 12. & Sat.13. morning : Ableton “Live”, held by Christian Kleine ( Ableton);
2) Sat.13. afternoon & Sun. 14: “Max ...
The workshop is divided in two parts:
1) Fri. 12. & Sat.13. morning : Ableton “Live”, held by Christian Kleine ( Ableton);
2) Sat.13. afternoon & Sun. 14: “Max ...
- Mon Feb 15, 2010 2:49 pm
- Forum: Max For Live
- Topic: The maths ot Max Msp
- Replies: 12
- Views: 3847
Re: The maths ot Max Msp
What to do to understand the Slide help file :
slide filters an input value logarithmically between changes. The formula is y (n) = y (n-1) + ((x (n) - y (n-1))/slide). It's particularly useful for envelope following and lowpass filtering.
you need to understand what y(n) , and x(n) means and ...
slide filters an input value logarithmically between changes. The formula is y (n) = y (n-1) + ((x (n) - y (n-1))/slide). It's particularly useful for envelope following and lowpass filtering.
you need to understand what y(n) , and x(n) means and ...
- Sun Feb 07, 2010 11:43 pm
- Forum: Max For Live
- Topic: Javascript access to "---"
- Replies: 3
- Views: 1231
Re: Javascript access to "---"
that ... didn't (seem to) work...but now that i think about it again, i think i know why.
when i open a patch in edit mode, that number is not generated.
Yeah that must be it. Doing something like that seems to work fine:
var id;
function findId()
{
var str = jsarguments[1];
id = str ...
when i open a patch in edit mode, that number is not generated.
Yeah that must be it. Doing something like that seems to work fine:
var id;
function findId()
{
var str = jsarguments[1];
id = str ...
- Sun Feb 07, 2010 1:32 am
- Forum: Max For Live
- Topic: Javascript access to "---"
- Replies: 3
- Views: 1231
Re: Javascript access to "---"
How do i figure out the patchers --- number in a js file?
The easiest way is to put something as argument to your js object, like "js yourawesomejsfile.js ---randomstuff". Then in your global code you can access to the argument of your js object (using jsarguments[1]) and then parse that string ...
The easiest way is to put something as argument to your js object, like "js yourawesomejsfile.js ---randomstuff". Then in your global code you can access to the argument of your js object (using jsarguments[1]) and then parse that string ...
- Thu Jan 28, 2010 5:23 pm
- Forum: Max For Live
- Topic: Encapsulate but still show presentation controls ?
- Replies: 8
- Views: 2454
Re: Encapsulate but still show presentation controls ?
Hi Bit....
You could use send and receive to get the information into the bpatcher.... if the object looks like s ---info and r ---info then the three --- mean the send and receive only occurs within the patch that they are written and not across all patches creating possible conflicts with ...
You could use send and receive to get the information into the bpatcher.... if the object looks like s ---info and r ---info then the three --- mean the send and receive only occurs within the patch that they are written and not across all patches creating possible conflicts with ...
- Thu Jan 28, 2010 5:21 pm
- Forum: Max For Live
- Topic: Announcement: Max For Live workshop at Ircam.
- Replies: 17
- Views: 4003
Re: Announcement: Max For Live workshop at Ircam.
Let me explain a little bit more. Each MfL device potentially live its life in a different thread than the others, and you don't have any control over it (Live does the threading repartition/optimization). Furthermore, each device use its own scheduler (synched to the Live transport). Using send ...
- Thu Jan 28, 2010 4:19 pm
- Forum: Max For Live
- Topic: The maths ot Max Msp
- Replies: 12
- Views: 3847
Re: The maths ot Max Msp
Hi,
I think I realize that if I should quit fucking around with sound programming, and really learn this stuff, I need to get my math skills up to a certain level.
What do I need to know if most topics of Msp except fft should make sense to me? Do I need to be expert in general algebra and ...
I think I realize that if I should quit fucking around with sound programming, and really learn this stuff, I need to get my math skills up to a certain level.
What do I need to know if most topics of Msp except fft should make sense to me? Do I need to be expert in general algebra and ...
- Thu Jan 28, 2010 4:17 pm
- Forum: Max For Live
- Topic: Announcement: Max For Live workshop at Ircam.
- Replies: 17
- Views: 4003
Re: Announcement: Max For Live workshop at Ircam.
That's exactly it ;-)julienb wrote:not using multiple device and directly link the sub-system... :?broc wrote:emmanuel,
in your program overview I've noticed the item "threading: why send/receive is bad".
Can you recommend any other method for data communication between M4L devices?
- Wed Jan 27, 2010 2:48 pm
- Forum: Max For Live
- Topic: Announcement: Max For Live workshop at Ircam.
- Replies: 17
- Views: 4003
Re: Announcement: Max For Live workshop at Ircam.
Something like that.julienb wrote:emmanuel,
quel est le programme ?
- Tue Jan 26, 2010 5:05 pm
- Forum: Max For Live
- Topic: [?] dac~ and Buffer shuffler.
- Replies: 5
- Views: 1368
Re: [?] dac~ and Buffer shuffler.
nothing of interest there. it was just left in after debugging etc i expect. someone forgot to take it out? you could delete it no probs, or leave it in. only would have any effect if open in full Max/MSP.
Indeed, it was there for debugging purposes from the early development age (prototype in ...
Indeed, it was there for debugging purposes from the early development age (prototype in ...