Search found 11 matches

by pain staging
Sat Oct 16, 2021 8:32 am
Forum: Tips & Tricks
Topic: Remote scripts: Add new notes?
Replies: 1
Views: 8603

Re: Remote scripts: Add new notes?

This works!

Code: Select all

import Live
# ...
new_notes = []
note = Live.Clip.MidiNoteSpecification(pitch=69, start_time=1, duration=4, velocity=127)
new_notes.append(note)
clip.add_new_notes(tuple(new_notes))
by pain staging
Sat Oct 16, 2021 6:24 am
Forum: Tips & Tricks
Topic: Remote scripts: Add new notes?
Replies: 1
Views: 8603

Remote scripts: Add new notes?

I´m trying to add new notes in my Remote script but haven´t been able to make it work. I´m on Live 11 so the recommended function is "add_new_notes" (documentation: https://docs.cycling74.com/max8/vignettes/live_object_model#Clip ) add_new_notes Parameter: dictionary Key: "notes"...
by pain staging
Sun Oct 10, 2021 6:11 am
Forum: Tips & Tricks
Topic: Remote scripts: Change arrangement view grid size?
Replies: 0
Views: 8295

Remote scripts: Change arrangement view grid size?

Is it possible to change the arrangement view grid size with remote scripts? I.e. the grid size in the low right corner of the arrangement view. I´ve managed to change the clip detail view grid size but can´t find any property in the LOM which seems to correspond to the arrangement view grid size (o...
by pain staging
Sun Oct 10, 2021 6:05 am
Forum: Tips & Tricks
Topic: Remote scripts: Control current parameter in VST-plugin GUI?
Replies: 2
Views: 8514

Re: Remote scripts: Control current parameter in VST-plugin GUI?

I don´t quite understand what you mean by "there's no automation of a non-configured parameter". Automation of a lot of VST parameters can be recorded by simply moving the corresponding control in the VST GUI. So some part of Live must surely know about the parameters?
by pain staging
Thu Oct 07, 2021 4:28 pm
Forum: Tips & Tricks
Topic: Remote scripts: Control current parameter in VST-plugin GUI?
Replies: 2
Views: 8514

Remote scripts: Control current parameter in VST-plugin GUI?

When a control is clicked on in a VST-plugin GUI and automation is on the "selected" parameter is shown in an automation lane. Example Serum "A WTPos". Is there a way to control this currently selected parameter with Remote Scripts? I thought the LOMs selected parameter (song.vie...
by pain staging
Fri May 21, 2021 11:09 am
Forum: Feature Wishlist
Topic: Re-sizable group track headers
Replies: 27
Views: 16612

Re: Re-sizable group track headers

+1
by pain staging
Wed May 12, 2021 11:32 am
Forum: Feature Wishlist
Topic: Adjusting note-velocity via keyboard-shortcut
Replies: 12
Views: 5597

Re: Adjusting note-velocity via keyboard-shortcut

@jonljacobi: I did actually not know this so thank you for the tip! :D Typing the value does however set all selected notes to the same value, which is useful in some cases but not what I was looking for here. I want to be able to increase/decrease the velocity relative to the current value, just li...
by pain staging
Tue Apr 06, 2021 12:14 pm
Forum: Feature Wishlist
Topic: Adjusting note-velocity via keyboard-shortcut
Replies: 12
Views: 5597

Re: Adjusting note-velocity via keyboard-shortcut

Great idea! I would love this!