Search found 127 matches

by sefable
Mon Oct 21, 2019 5:59 pm
Forum: Max For Live
Topic: How to tell Max to log into a file instead of the console?
Replies: 0
Views: 909

How to tell Max to log into a file instead of the console?

Hello,

Is there anyway to tell Max to also log the content of the console on a file on disk?

I am using windows and can't find a way to do that.

I want to use my own log file viewer.

Thanks!
by sefable
Mon Oct 21, 2019 3:32 pm
Forum: Max For Live
Topic: Nodejs - How to log to the log file configured in max parameters?
Replies: 0
Views: 702

Nodejs - How to log to the log file configured in max parameters?

Hello, With node 4 max, I know how to log into the max console with maxApi.post("message") I also need to log into the logging file configured in Max parameters. I tried "console.log('message')" but my messages are not present in the logging file. The logging file only contains t...
by sefable
Mon Oct 21, 2019 12:40 pm
Forum: Max For Live
Topic: _parameter_range does not update Ableton parameter range
Replies: 6
Views: 1453

Re: _parameter_range does not update Ableton parameter range

Thanks for the workaround, it's a clever one, did not think of it.

One can clearly tell you've been to the deepest parts haha
by sefable
Mon Oct 21, 2019 12:33 pm
Forum: Ableton Live
Topic: Quickly switching MIDI Mappings
Replies: 34
Views: 6318

Re: Quickly switching MIDI Mappings

Modulation envelopes for device parameters can only be drawn or copied/paste from automation envelopes.
by sefable
Mon Oct 21, 2019 12:31 pm
Forum: Max For Live
Topic: Setting the modulation "visual display" of a live.dial
Replies: 3
Views: 1105

Re: Setting the modulation "visual display" of a live.dial

I'm only trying to update a visual aspect of a GUI object.

I'm not trying to change the modulation values of Ableton.

The use case I have is actually without Ableton, using Max Msp standalone.

Anyway, thanks for your input, it's definitely helping.
by sefable
Mon Oct 21, 2019 9:55 am
Forum: Max For Live
Topic: _parameter_range does not update Ableton parameter range
Replies: 6
Views: 1453

Re: _parameter_range does not update Ableton parameter range

you can set it at load with arguments of a patcher that contains the live.dial however. I tried that and it works indeed. But I need the range to be stored per preset. As far as I understand the situation, when Ableton sets the min&max values of my live.numbox from the saved preset, it's alread...
by sefable
Mon Oct 21, 2019 8:12 am
Forum: Max For Live
Topic: _parameter_range does not update Ableton parameter range
Replies: 6
Views: 1453

_parameter_range does not update Ableton parameter range

Hello, I am sending the following message to a live.dial after the device has been loaded : dialMaxObj.message("_parameter_range", [100, 200]) The live.dial is correctly updated. However, in Ableton, the range of values in the Automation envelope for that parameter is still [0, 127] Saving...
by sefable
Mon Oct 21, 2019 8:02 am
Forum: Max For Live
Topic: Setting the modulation "visual display" of a live.dial
Replies: 3
Views: 1105

Re: Setting the modulation "visual display" of a live.dial

What I am actually looking for is instead of : 

Code: Select all

dialMaxObj.message("set", 2)
I'm looking for

Code: Select all

dialMaxObj.message("set_modulation_value", 2)
This is so there are two values displayed, just like Ableton manages to do.
by sefable
Mon Oct 21, 2019 7:58 am
Forum: Max For Live
Topic: Setting the modulation "visual display" of a live.dial
Replies: 3
Views: 1105

Re: Setting the modulation "visual display" of a live.dial

Thanks for your help! I am modulating the parameter in Max, with Sin and Cos functions and I wish to display the resulting modulation separately from the initial value. Just like Ableton does when you edit the Modulation envelope of a parameter. It doesn't update the the "clock hand" of th...
by sefable
Mon Oct 21, 2019 6:13 am
Forum: Max For Live
Topic: Device not usable if patch open in max msp
Replies: 10
Views: 2787

Re: Device not usable if patch open in max msp

You're right for keyboard mapping. I confused the fact that contrary to midi controllers, the keyboard is released when you switch from window to window.

I'm switching to using a midi keyboard instead of keyboard keys.
by sefable
Mon Oct 21, 2019 6:07 am
Forum: Max For Live
Topic: Max Console when using the device
Replies: 1
Views: 903

Re: Max Console when using the device

Thanks!!
by sefable
Mon Oct 21, 2019 6:07 am
Forum: Max For Live
Topic: How to have a Parameter mappable but not automatable
Replies: 2
Views: 1130

Re: How to have a Parameter mappable but not automatable

It's one of the issues I encountered while trying to implement this viewtopic.php?f=1&t=236041&start=30
by sefable
Sun Oct 20, 2019 2:33 pm
Forum: Max For Live
Topic: Setting the modulation "visual display" of a live.dial
Replies: 3
Views: 1105

Setting the modulation "visual display" of a live.dial

Hello, I am using parameter Modulation in Ableton (on top of Automation). As can be seen in the capture bellow, one can see where the Automation is set (the clock hand), and one can see the modulation value (how far the blue circle goes). https://cycling74-web-uploads.s3.amazonaws.com/5d9e0fd52e9318...
by sefable
Sun Oct 20, 2019 2:27 pm
Forum: Max For Live
Topic: Device not usable if patch open in max msp
Replies: 10
Views: 2787

Re: Device not usable if patch open in max msp

An other issue I had today concerns the range of a live.dial I set "_parameter_range" in javascript. In Max, the value "rawvalue" of the dial is not updated after sending "_parameter_range". (If you send a "bang" after changing the range, the rawvalue is not u...
by sefable
Sun Oct 20, 2019 10:03 am
Forum: Max For Live
Topic: Device not usable if patch open in max msp
Replies: 10
Views: 2787

Re: Device not usable if patch open in max msp

Another example of differences are keyboard key mappings.

They're not forwarded to Max. Midi mappings are.