Talk:Console Commands: Difference between revisions
Jump to navigation
Jump to search
→Changing detune markers to 2 octaves up: new section |
|||
| Line 6: | Line 6: | ||
The code snippet given does not work: | The code snippet given does not work: | ||
for (const marker of selection.markers) { | for (const marker of selection.markers) { | ||
if (marker.setting == kMarkerSettingInstrumentDetune) { | |||
marker.value = 2400; | |||
} | |||
} | } | ||
Latest revision as of 19:33, 20 November 2024
Ways to open console
Why is it redundant to add F12 as a way to open the console? Benvisions (talk) 16:46, 1 January 2023 (PST)
Changing detune markers to 2 octaves up
The code snippet given does not work:
for (const marker of selection.markers) {
if (marker.setting == kMarkerSettingInstrumentDetune) {
marker.value = 2400;
}
}