Talk:Console Commands: Difference between revisions

From Online Sequencer Wiki
Jump to navigation Jump to search
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


Why is it redundant to add F12 as a way to open the console? [[User:Benvisions|Benvisions]] ([[User talk:Benvisions|talk]]) 16:46, 1 January 2023 (PST)
Why is it redundant to add F12 as a way to open the console? [[User:Benvisions|Benvisions]] ([[User talk: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;
  }
}

Latest revision as of 18: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;
  }
}