Show/Hide Marker List — Logic Pro X keyboard command of the day

Logic Pro X keyboard command of the day. #LogicProX @StudioIntern1

Show/Hide Marker List

No default keys assigned. Markers are part of the toolkit I am trying to really make into a power tool.

Currently I put my X-Touch into “Large Marker” mode and use V-pot 6 to create markers “without rounding” while listening to a mix. A marker at every point I want to look into, make changes or adjustments.

I have made some attempts using keyboard commands with varying success. The keyboard command for

Create Marker without rounding ⌃⌥'

works fine. The part that I want to work is follow the marker creation with entering a comment. If the Marker list is open, and the editing window is open, then pressing the “Edit” button allows typing while things still play. Enter the comment, click the “Done” button (same position as the “Edit” button and move on.

All I need to make it “simple” is a way to click the “Edit/Done” button from the keyboard. If I leave the cursor in just the right spot all I need to do is click. With a trackpad in “tap to click” mode that seems to work OK.

If I export all MIDI tracks to a MIDI file the marker information is included. Use the MIDI file along with exported audio tracks and someone can get a picture of what was being worked on. I think of the markers as “point in time” comments. Combining project notes, track notes, and marker notes makes it easier to clearly document what is being done.

Found it!

Work with markers

Markers overview

When Show Advanced Tools is selected in the Advanced preferences pane, you can use markers to tag different parts of a project, and quickly select the parts for playback, arranging, and editing. Markers can help you organize your project, and also act as storage areas for locator positions.”

Excerpt From: Apple Inc. “Logic Pro X User Guide.” iBooks.

Mackie Control Marker button overview

Press the MARKER button to activate one of three marker modes: Small Marker mode, Large Marker mode, and Temporary Marker mode. You can use these modes to create or delete markers and jump to markers in your project.

Excerpt From: Apple Inc. “Logic Pro X Control Surfaces Support.” iBooks.

⇧ SHIFT  -  ⌃ CONTROL  -  ⌥ OPTION  -  ⌘ COMMAND

Nudge Region/Event Length Left by Beat — Logic Pro X keyboard command of the day

Logic Pro X keyboard command of the day. #LogicProX @StudioIntern1

Nudge Region/Event Length Left by Beat

I don’t often find myself using beats and bars, but I am trying to do it more often with “songs” that I mix.

Make a region “shorter at the end” by a maximum of one beat.

Nudging right makes the region longer by a maximum of one beat.

I would probably be more inclined to set the “nudge value” to “Beat” and use the shift-option-arrow (right/left)

  ⇧⌥→ and ⇧⌥←

⇧ SHIFT – ⌃ CONTROL – ⌥ OPTION – ⌘ COMMAND ← → ↑ ↓

MIDI Environment — Logic Pro X keyboard command of the day

Logic Pro X keyboard command of the day. #LogicProX @StudioIntern1

  MIDI Environment

Today’s command is actually an entire section. All of the commands in the MIDI Environment are listed here.

A tremendous amount of work can be accomplished here, in fact, it is the place where we can place plugins on the input channel for recording effects to the audio track.

This is another part of Logic Pro X that I have barely scratched the surface of. A chapter to read, maybe find some tutorials. If I wanted to “abuse my tools” this is where I would probably start.

“Environment overview
The Environment refers to the virtual environment of Logic Pro inside your computer. It provides a virtual view of your MIDI studio, giving you complete control over your MIDI setup, and includes the following objects.”

Excerpt From: Apple Inc. “Logic Pro X User Guide.” iBooks.

Toggle writing Plug-in parameters Automation in Write Mode — Logic Pro X keyboard command of the day

Logic Pro X keyboard command of the day. #LogicProX @StudioIntern1

Toggle writing Plug-in parameters Automation in Write Mode

Today I have learned that I know virtually nothing about using automation in Logic. Biggest thing I learned today is that

⌘⌃E command-control-E

opens the event list for the track. You can see the automation events in this list.

I will have to spend time reading the chapter on automation, and trying to figure out when/where I might actually use it,

It’s a vast subject. Kind of overwhelming.

“Automate mix and effects settings

Automation overview
Automation refers to recording, editing, and playing back the movements of faders, knobs, and switches. Using automation, you can create changes over time to volume, pan, and other settings. You can add automation to all track types.”

Excerpt From: Apple Inc. “Logic Pro X User Guide.” iBooks.

MIDI file scale generator

I’m a bit old-fashioned. I wrote a “scale” generator way back when so I could play a MIDI file of a Major/minor scale sequence.

These days I use “MIDIplayer X” to play my scales. The classic ‘t2mf’ is used to create the MIDI file from a shell script…

 
#!/bin/bash
# SCALE="C" SCALEM="a" N1=60

let N1=N1+0
let N2=N1+2
let N3=N1+4
let N4=N1+5
let N5=N1+7
let N6=N1+9
let N7=N1+11
let N8=N1+12

let NM1=N1-3
let NM2=N1-1

cat >$SCALE-$SCALEM.txt <<EOF
MFile 0 1 24
MTrk
0 Meta Text "$SCALE major scale"
0 On ch=1 n=$N1 v=64
12 On ch=1 n=$N1 v=0
24 On ch=1 n=$N2 v=64
36 On ch=1 n=$N2 v=0
48 On ch=1 n=$N3 v=64
60 On ch=1 n=$N3 v=0
72 On ch=1 n=$N4 v=64
84 On ch=1 n=$N4 v=0
96 On ch=1 n=$N5 v=64
108 On ch=1 n=$N5 v=0
120 On ch=1 n=$N6 v=64
132 On ch=1 n=$N6 v=0
144 On ch=1 n=$N7 v=64
156 On ch=1 n=$N7 v=0
168 On ch=1 n=$N8 v=64
180 On ch=1 n=$N8 v=0
190 Meta Text "$SCALEM minor scale"
200 On ch=1 n=$NM1 v=64
212 On ch=1 n=$NM1 v=0
224 On ch=1 n=$NM2 v=64
236 On ch=1 n=$NM2 v=0
248 On ch=1 n=$N1 v=64
260 On ch=1 n=$N1 v=0
272 On ch=1 n=$N2 v=64
284 On ch=1 n=$N2 v=0
296 On ch=1 n=$N3 v=64
308 On ch=1 n=$N3 v=0
320 On ch=1 n=$N4 v=64
332 On ch=1 n=$N4 v=0
344 On ch=1 n=$N5 v=64
356 On ch=1 n=$N5 v=0
368 On ch=1 n=$N6 v=64
380 On ch=1 n=$N6 v=0
392 Meta TrkEnd
TrkEnd
EOF

t2mf $SCALE-$SCALEM.txt >$SCALE-$SCALEM.mid

I assure you that weird characters in file names can be odd.