--[[ Settings for Lokasenna_Radial Menu.lua This file is written as a Lua table, and must use the appropriate syntax with regard to tables, indices, keys, strings, etc, etc. If you run Radial Menu and get an error loading the menu, it either couldn't find this file or you've got some incorrect Lua in it. A few general notes: - Due to quirks with the function that loads these settings into the script, all indices must include square brackets and/or quotation marks rather than being left bare, i.e. [3] not 3 ["col_main"] not col_main - Colors can be specified per button, per menu, or globally (see table index [-1]). Buttons with no colors specified will use their menu's settings, menus will use the global settings. - When a button is assigned to an action that's toggled On, the button will light up; if the mouse is hovering or clicked on it, the toggle color will be blended with the hover or background color, respectively. - Menus are numbered starting from 0, and menu numbers do NOT need to be contiguous - that is, 1 2 3 4 9 11 15 20 25 is fine, so feel free to organize your menus by number however you want. - Buttons are numbered starting from 0, and button numbers DO need to be contiguous. - You can add a button in the center of the ring by giving it the number [-1] Menu #: [0] = { (There's no limit to the number of menus you can have) ["alias"] = "blah", A name to use for this menu so you don't have to remember menu numbers. Displayed in the menu list, and can be used in button actions and context boxes. (See below) ["col_main"] = { Normal button color for buttons in this menu [1] = 0.0, R [2] = 1.0, G (values are from 0-1) [3] = 1.0, B ["col_tog"] = { Toggled color, for use with ... i.e. "Options: Toggle metronome" ["col_hvr"] = { Mouse-over color ... ["col_bg"] = { Background color ... Button #: [0] = { (Maximum of 16 buttons per menu) Button settings: ["lbl"] = "cool", The button's label | or ; will wrap the text to a new line, i.e. "Multi|line;text" ["act"] = "menu 1", Action to perform / menu to open. Valid commands are... Action IDs: 40364 Script/extension actions: _SWS_AWMPLAYTOG _RS2bf8e77e958d48b42c7d7b585790ee0427a96a7e Note: Because the MIDI Editor uses its own action list, when running MIDI actions you may need to enter them as 'midi 40364' to keep Reaper from getting confused. Open a menu: menu 20 (opens menu 20) menu stuff (opens the menu with alias 'stuff') back Return to the previous menu base Return to the original menu (either menu 0 or the specified menu for a given Reaper context) quit Close the script Special commands: midi 12345 Send an action to the current MIDI editor rather than the main window xN 12345 Perform the action N times each time the button is clicked. e.g. x3 40001 will insert three new tracks each time the button is clicked repeat N "12345" Repeats the action every N '12345' seconds while the mouse button is held down. e.g. repeat 0.5 "40001" will insert a new track every 0.5 seconds The special commands can be combined, in (I think) any order: midi x3 12345 Perform MIDI action 12345 three times repeat 0.5 "x3 12345" Perform action 12345 three times, every 0.5 seconds. ["col_main"] = { Normal button color [1] = 0.0, R [2] = 1.0, G (values are from 0-1) [3] = 1.0, B ["col_tog"] = { Toggled color, for use with ... i.e. "Options: Toggle metronome" ["col_hvr"] = { Mouse-over color ... Global settings are stored in index [-1]: [-1] = { ["close_time"] = 600, How long to keep the window open (in ms) on startup if no key is being held down. Going lower than 600ms will probably cause the menu to keep opening and closing. Global color settings: ["col_main"] = { Normal button color for buttons in this menu [1] = 0.0, R [2] = 1.0, G (values are from 0-1) [3] = 1.0, B ["col_tog"] = { Toggled color, for use with ... i.e. "Options: Toggle metronome" ["col_hvr"] = { Mouse-over color ... ["col_bg"] = { Background color ... ["contexts"] = { What menu to open on startup for a given mouse ["mcp|empty"] = 10, context. Contexts can be assigned with menu numbers or aliases, i.e. 20 stuff If a particular context isn't given a menu, it will look up one 'level' at a time until it finds a match. Example: The menu was opened with the mouse cursor over an empty area of a track in the Arrange view. The script will look for: ["arrange|track|empty"] then: ["arrange|track"] then: ["arrange"] If there's still no match, it will open menu 0. (see the Setup script's Context tab for a list of available contexts) ["fonts"] = { Font settings [1] = { 1 - Normal buttons 2 - Menus 3 - Preview text "Calibri", Font face. See the note below. 16, Size "b" Flags. Just a string listing: b bold i italics u underline The order doesn't matter, i.e. this would be perfectly fine: "iub" Important: Font names are really picky, and will default back to Arial if you get them wrong. The Setup script provides a green/red light for each font to let you know if it's correct or not. Unfortunately, the names are often not what you see when using them in Office, etc... To get a font's name in Windows: 1. Find the .ttf file in your Windows\Fonts folder 2. Right-click it, select Properties 3. Select the Details tab 4. The first field, "Name", is what you want to be using here. Mac users - I have no idea. I know, it's stupid. ["hvr_click"] = false, Boolean - hover over a button to 'click' it ["hvr_time"] = 200, Hover time for ^^^ (in ms) ["key_binds"] = { Key bind settings ["enabled"] = true, Boolean - enables the assigned key binds ["hints"] = true, Boolean - display key binds outside the menu ring ["last_num"] = 1, Last menu size selected in the setup script (1-13) [4] = { Menu size for each set of bindings. (4-16) [1] = "r", Key bind for the given button number. -1 = Center button 1 = Always the button facing right ["key_mode"] = 1, What to do when the shortcut key is released (1-3, see the options in the Setup script) ["last_tab"] = 1, The last tab that was active in the Setup script ["mouse_mode"] = 1, What to do when the mouse is clicked (1-3, see the options in the Setup script) ["num_btns"] = 8, Number of buttons for new menus to start with ["preview"] = true, Whether or not to preview a menu's buttons when hovering the mouse over it. Button radiuses/target areas: ["ra"] = 48, Center button ["rb"] = 60, Currently unused ["rc"] = 116, Inside of the button ring ["rd"] = 192, Outside of the button ring ["re"] = 192, Threshold for tracking Swipes Note that the preview labels when hovering over a menu are drawn with a radius of (rc - ra), so adjusting these will affect the labels as well. ["swipe"] = { Parameters for the Swiping feature: ["accel"] = 65, Start sensitivity ["actions"] = true, Whether Swipes can trigger actions, or just menus ["decel"] = 10, Stop sensitivity ["enabled"] = true, Whether Swiping mode is active or not ["menu"] = 0, What menu to use for Swipe actions... ["mode"] = 1, ...if this is set to 2. Setting it to 1 will always use the current menu ["stop"] = 20, Stop time for Swipes, in milliseconds ]]-- return { [-1] = { ["close_time"] = 1000, ["col_bg"] = { [1] = 0.2, [2] = 0.2, [3] = 0.2, }, ["col_hvr"] = { [1] = 0.878, [2] = 0.878, [3] = 0.878, }, ["col_main"] = { [1] = 0.753, [2] = 0.753, [3] = 0.753, }, ["col_tog"] = { [1] = 0, [2] = 0.753, [3] = 0, }, ["contexts"] = { ["tcp"] = "", }, ["fonts"] = { [1] = { [1] = "Andale Mono", [2] = 16, [3] = "b", }, [2] = { [1] = "Andale Mono", [2] = 16, [3] = "bu", }, [3] = { [1] = "Andale Mono", [2] = 14, }, }, ["hvr_click"] = false, ["hvr_time"] = 50, ["key_binds"] = { [4] = { [-1] = "g", [1] = "s", [2] = "t", [3] = "a", [4] = "r", }, [5] = { [-1] = "g", [1] = "s", [2] = "x", [3] = "z", [4] = "a", [5] = "r", }, [6] = { [-1] = "g", [1] = "s", [2] = "c", [3] = "x", [4] = "z", [5] = "a", [6] = "r", }, [7] = { [-1] = "g", [1] = "t", [2] = "c", [3] = "x", [4] = "z", [5] = "a", [6] = "r", [7] = "s", }, [8] = { [-1] = "g", [1] = "t", [2] = "v", [3] = "c", [4] = "x", [5] = "z", [6] = "a", [7] = "r", [8] = "s", }, [9] = { [-1] = "g", [1] = "d", [2] = "v", [3] = "c", [4] = "x", [5] = "z", [6] = "a", [7] = "r", [8] = "s", [9] = "t", }, [10] = { [-1] = "g", [0] = "g", [1] = "d", [2] = "b", [3] = "v", [4] = "c", [5] = "x", [6] = "z", [7] = "a", [8] = "r", [9] = "s", [10] = "t", }, [11] = { [-1] = "g", [1] = "p", [2] = "b", [3] = "v", [4] = "c", [5] = "x", [6] = "z", [7] = "a", [8] = "r", [9] = "s", [10] = "t", [11] = "d", }, [12] = { [-1] = "g", [1] = "f", [2] = "b", [3] = "v", [4] = "c", [5] = "x", [6] = "z", [7] = "a", [8] = "r", [9] = "s", [10] = "t", [11] = "d", [12] = "p", }, [13] = { [-1] = "g", }, [14] = { [-1] = "g", }, [15] = { [-1] = "g", }, [16] = { [-1] = "g", }, ["enabled"] = true, ["hints"] = true, ["last_num"] = 9.0, }, ["key_mode"] = 3, ["last_pos"] = { [1] = 0.0, [2] = 4.0, }, ["last_tab"] = 1, ["mnu_0_on_act"] = false, ["mouse_mode"] = 3, ["num_btns"] = 8, ["preview"] = true, ["ra"] = 16, ["rb"] = 60, ["rc"] = 98, ["rd"] = 192, ["re"] = 110, ["swipe"] = { ["accel"] = 100, ["actions"] = true, ["decel"] = 9, ["enabled"] = false, ["menu"] = 0, ["menu_mode"] = 1, ["stop"] = 5, }, ["win_pos"] = 1, }, [0] = { [-1] = { ["act"] = "quit", ["lbl"] = "", }, [0] = { ["act"] = "menu track", ["lbl"] = "Automation", }, [1] = { ["act"] = "menu view", ["lbl"] = "Time Selection", }, [2] = { ["act"] = "menu options", ["lbl"] = "Snapping", }, [3] = { ["act"] = "menu track actions", ["lbl"] = "Track Actions", }, [4] = { ["act"] = "menu track options", ["lbl"] = "Track|Options", }, [5] = { ["act"] = "menu items", ["lbl"] = "Items", }, [6] = { ["act"] = "menu global options", ["lbl"] = "Global|Options", }, [7] = { ["act"] = "menu take", ["lbl"] = "Take", }, [8] = { ["act"] = "menu midi", ["lbl"] = "MIDI|Editor", }, [9] = { ["act"] = "menu Zoom", ["lbl"] = "Zoom", }, [10] = { ["act"] = "menu windows", ["lbl"] = "Windows", }, }, [1] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "menu auto write current", ["lbl"] = "Write to Current", }, [1] = { ["act"] = "menu auto write all", ["col_tog"] = { [1] = 1.0, [2] = 0.0, [3] = 0.0, }, ["lbl"] = "Write to All", }, [2] = { ["act"] = "menu track auto", ["lbl"] = "Track Mode", }, [3] = { ["act"] = "menu global auto", ["lbl"] = "Global Mode", }, [4] = { ["act"] = "menu track env", ["lbl"] = "Envelopes", }, [5] = { ["act"] = "menu auto point", ["lbl"] = "Point Shape", }, [6] = { ["act"] = "_RS9f63e44f39e35280383c76dae910159f99e4d6bd", ["lbl"] = "LFO|Generator", }, ["alias"] = "track", }, [2] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40622", ["lbl"] = "Loop from|Selection", }, [1] = { ["act"] = "41039", ["lbl"] = "Loop from|Items", }, [2] = { ["act"] = "40623", ["lbl"] = "Selection from|Loop", }, [3] = { ["act"] = "40290", ["lbl"] = "Selection from|items", }, [4] = { ["act"] = "40038", ["lbl"] = "Shift Right", }, [5] = { ["act"] = "40037", ["lbl"] = "Shift Left", }, [6] = { ["act"] = "40635", ["lbl"] = "Remove|Selection", }, [7] = { ["act"] = "40201", ["lbl"] = "Delete All|and ripple", }, [8] = { ["act"] = "40200", ["lbl"] = "Insert Space", }, [9] = { ["act"] = "40625", ["lbl"] = "Set Start", }, [10] = { ["act"] = "40626", ["lbl"] = "Set End", }, ["alias"] = "view", }, [3] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40145", ["lbl"] = "Grid Lines", }, [1] = { ["act"] = "40145", ["lbl"] = "Grid", }, [2] = { ["act"] = "1157", ["lbl"] = "Snapping", }, [3] = { ["act"] = "40775", ["lbl"] = "1/32", }, [4] = { ["act"] = "40776", ["lbl"] = "1/16", }, [5] = { ["act"] = "40778", ["lbl"] = "1/8", }, [6] = { ["act"] = "40779", ["lbl"] = "1/4", }, [7] = { ["act"] = "40780", ["lbl"] = "1/2", }, [8] = { ["act"] = "40781", ["lbl"] = "1/1", }, [9] = { ["act"] = "_SWS_AWTOGGLETRIPLET", ["lbl"] = "Triplet", }, [10] = { ["act"] = "_SWS_AWTOGGLEDOTTED", ["lbl"] = "Dotted", }, [11] = { ["act"] = "_RS61423f4f1224e18018576b5e3e1af80ebbd67f7e", ["lbl"] = "Quantize Tool", }, ["alias"] = "options", }, [4] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40757", ["lbl"] = "Split @|Edit Cursor", }, [1] = { ["act"] = "40061", ["lbl"] = "Split @|Time Sel.", }, [2] = { ["act"] = "41588", ["lbl"] = "Glue in|Time Selection", }, [3] = { ["act"] = "40362", ["lbl"] = "Glue|Items", }, [4] = { ["act"] = "40009", ["lbl"] = "Item|Properties", }, [5] = { ["act"] = "40704", ["lbl"] = "Set Color", }, [6] = { ["act"] = "40108", ["lbl"] = "Normalize|Items", }, [7] = { ["act"] = "_BR_NORMALIZE_LOUDNESS_ITEMS_LU", ["lbl"] = "Normalize|Items|to 0Lufs", }, [8] = { ["act"] = "40316", ["lbl"] = "Quantize|Positions", }, [9] = { ["act"] = "40315", ["lbl"] = "Auto Trim", }, [10] = { ["act"] = "40760", ["lbl"] = "Dynamic|Split", }, ["alias"] = "items", }, [5] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40131", ["lbl"] = "Crop To|Active Take", }, [1] = { ["act"] = "40129", ["lbl"] = "Delete|Active Take", }, [2] = { ["act"] = "40435", ["lbl"] = "Show Takes|In Lanes", }, [3] = { ["act"] = "41331", ["lbl"] = "Set Color", }, [4] = { ["act"] = "menu take env", ["lbl"] = "Envelopes", }, [5] = { ["act"] = "40126", ["lbl"] = "Switch To|Prev. Take", }, [6] = { ["act"] = "40224", ["lbl"] = "Explode Across|Tracks", }, [7] = { ["act"] = "40125", ["lbl"] = "Switch To|Next Take", }, ["alias"] = "take", }, [6] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "1155", ["lbl"] = "Ripple", }, [1] = { ["act"] = "40070", ["lbl"] = "Evelope move|with items", }, [2] = { ["act"] = "40507", ["lbl"] = "Show|Overlapping|items", }, [3] = { ["act"] = "40041", ["lbl"] = "Auto Crossfade", }, ["alias"] = "global options", }, [7] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 40759", ["lbl"] = "Transpose", }, [1] = { ["act"] = "midi 40004", ["lbl"] = "Event Properties", }, [2] = { ["act"] = "midi 40666", ["lbl"] = "Raw MIDI", }, [3] = { ["act"] = "menu midi view", ["lbl"] = "View Mode", }, [4] = { ["act"] = "menu midi size", ["lbl"] = "Grid Size", }, [5] = { ["act"] = "menu midi type", ["lbl"] = "Grid Type", }, [6] = { ["act"] = "menu midi length", ["lbl"] = "Note Length", }, [7] = { ["act"] = "menu midi channel", ["lbl"] = "Channel", }, [8] = { ["act"] = "midi 40762", ["lbl"] = "Filter", }, [9] = { ["act"] = "midi 40009", ["lbl"] = "Quantize", }, [10] = { ["act"] = "midi 40457", ["lbl"] = "Humanize", }, ["alias"] = "midi", }, [8] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40869", ["lbl"] = "Zoom Undo", }, [1] = { ["act"] = "40875", ["lbl"] = "Zoom Redo", }, [2] = { ["act"] = "40295", ["lbl"] = "Zoom All Horizontal", }, [3] = { ["act"] = "_c0cfc764fdb74e60afbc011f3557ed97", ["lbl"] = "Zoom|All Project", }, [4] = { ["act"] = "_SWS_VZOOMFIT", ["lbl"] = "Zoom|Selected|Tracks", }, [5] = { ["act"] = "41622", ["lbl"] = "Zoom|Selected Items", }, [6] = { ["act"] = "40031", ["lbl"] = "Zoom|Time Selection", }, ["alias"] = "Zoom", ["col_main"] = { [1] = 0.753, [2] = 0.753, [3] = 0.753, }, }, [9] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "42023", ["lbl"] = "Latch Preview", }, [1] = { ["act"] = "40403", ["lbl"] = "Write", }, [2] = { ["act"] = "40400", ["lbl"] = "Trim/Read", }, [3] = { ["act"] = "40401", ["lbl"] = "Read", }, [4] = { ["act"] = "40402", ["lbl"] = "Touch", }, [5] = { ["act"] = "40404", ["lbl"] = "Latch", }, ["alias"] = "track auto", }, [10] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40406", ["lbl"] = "Volume", }, [1] = { ["act"] = "40407", ["lbl"] = "Pan", }, [2] = { ["act"] = "41975", ["lbl"] = "Show env.|panel", }, [3] = { ["act"] = "40726", ["lbl"] = "4 Points|at selection", }, ["alias"] = "track env", }, [11] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40693", ["lbl"] = "Volume", }, [1] = { ["act"] = "40694", ["lbl"] = "Pan", }, [2] = { ["act"] = "40695", ["lbl"] = "Mute", }, [3] = { ["act"] = "41612", ["lbl"] = "Pitch", }, [4] = { ["act"] = "41974", ["lbl"] = "Show Env.|Dialog", }, ["alias"] = "take env", }, [12] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 40482", ["lbl"] = "1", }, [1] = { ["act"] = "midi 40483", ["lbl"] = "2", }, [2] = { ["act"] = "midi 40484", ["lbl"] = "3", }, [3] = { ["act"] = "midi 40485", ["lbl"] = "4", }, [4] = { ["act"] = "midi 40486", ["lbl"] = "5", }, [5] = { ["act"] = "midi 40487", ["lbl"] = "6", }, [6] = { ["act"] = "midi 40488", ["lbl"] = "7", }, [7] = { ["act"] = "midi 40489", ["lbl"] = "8", }, [8] = { ["act"] = "midi 40490", ["lbl"] = "9", }, [9] = { ["act"] = "midi 40491", ["lbl"] = "10", }, [10] = { ["act"] = "midi 40492", ["lbl"] = "11", }, [11] = { ["act"] = "midi 40493", ["lbl"] = "12", }, [12] = { ["act"] = "midi 40494", ["lbl"] = "13", }, [13] = { ["act"] = "midi 40495", ["lbl"] = "14", }, [14] = { ["act"] = "midi 40496", ["lbl"] = "15", }, [15] = { ["act"] = "midi 40497", ["lbl"] = "16", }, ["alias"] = "midi channel", }, [13] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40252", ["lbl"] = "Normal", }, [1] = { ["act"] = "40253", ["lbl"] = "Sel. Item|Auto Punch", }, [2] = { ["act"] = "40076", ["lbl"] = "Time Sel.|Auto Punch", }, ["alias"] = "record mode", }, [14] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40901", ["lbl"] = "Freeze|Mono", }, [1] = { ["act"] = "41223", ["lbl"] = "Freeze|Stereo", }, [2] = { ["act"] = "40641", ["lbl"] = "Free Item|Positioning", }, [3] = { ["act"] = "40357", ["lbl"] = "Custom Colour", }, [4] = { ["act"] = "_RS6137aa5b047a0691f19a847c3b666c46dbf6b2f4", ["lbl"] = "Folder|from|Selected", }, [5] = { ["act"] = "menu track auto", ["lbl"] = "Automation|Mode", }, [6] = { ["act"] = "41644", ["lbl"] = "UnFreeze", }, [7] = { ["act"] = "40877", ["lbl"] = "Freeze|Multichannel", }, [8] = { ["act"] = "_RS44b7eaed00016160eedb835d72e28ae2b855ef6f", ["lbl"] = "Add VCA|For Selected", }, [9] = { ["act"] = "_RS29eda826260203aa698f8b370c0f265e5942a69a", ["lbl"] = "Remove VCA", }, ["alias"] = "track options", }, [15] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 40042", ["lbl"] = "Piano Roll", }, [1] = { ["act"] = "midi 40043", ["lbl"] = "Named Notes", }, [2] = { ["act"] = "midi 40056", ["lbl"] = "Event List", }, [3] = { ["act"] = "midi 40954", ["lbl"] = "Notation", }, ["alias"] = "midi view", }, [16] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 41016", ["lbl"] = "2", }, [1] = { ["act"] = "midi 41015", ["lbl"] = "1", }, [2] = { ["act"] = "midi 41014", ["lbl"] = "1/2", }, [3] = { ["act"] = "midi 41013", ["lbl"] = "1/4", }, [4] = { ["act"] = "midi 41012", ["lbl"] = "1/8", }, [5] = { ["act"] = "midi 41011", ["lbl"] = "1/16", }, [6] = { ["act"] = "midi 41010", ["lbl"] = "1/32", }, [7] = { ["act"] = "midi 41009", ["lbl"] = "1/64", }, ["alias"] = "midi size", }, [17] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 41003", ["lbl"] = "Straight", }, [1] = { ["act"] = "midi 41005", ["lbl"] = "Dotted", }, [2] = { ["act"] = "midi 41006", ["lbl"] = "Swing", }, [3] = { ["act"] = "midi 41004", ["lbl"] = "Triplet", }, ["alias"] = "midi type", }, [18] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "midi 41710", ["lbl"] = "1", }, [1] = { ["act"] = "midi 41709", ["lbl"] = "1/2", }, [2] = { ["act"] = "midi 41708", ["lbl"] = "1/4", }, [3] = { ["act"] = "midi 41707", ["lbl"] = "1/8", }, [4] = { ["act"] = "midi 41706", ["lbl"] = "1/16", }, [5] = { ["act"] = "midi 41705", ["lbl"] = "1/32", }, [6] = { ["act"] = "midi 41704", ["lbl"] = "1/64", }, [7] = { ["act"] = "midi 41295", ["lbl"] = "Use|Grid", }, ["alias"] = "midi length", }, [19] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40683", ["lbl"] = "Bezier", }, [1] = { ["act"] = "40429", ["lbl"] = "Fast End", }, [2] = { ["act"] = "40428", ["lbl"] = "Fast Start", }, [3] = { ["act"] = "40189", ["lbl"] = "Linear", }, [4] = { ["act"] = "40424", ["lbl"] = "Slow Start/End", }, [5] = { ["act"] = "40190", ["lbl"] = "Square", }, ["alias"] = "env sel shape", }, [20] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40681", ["lbl"] = "Bezier", }, [1] = { ["act"] = "40431", ["lbl"] = "Fast End", }, [2] = { ["act"] = "40430", ["lbl"] = "Fast Start", }, [3] = { ["act"] = "40187", ["lbl"] = "Linear", }, [4] = { ["act"] = "40425", ["lbl"] = "Slow Start/End", }, [5] = { ["act"] = "40188", ["lbl"] = "Square", }, ["alias"] = "env def", }, [21] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "42022", ["lbl"] = "Latch Preview", }, [1] = { ["act"] = "40882", ["lbl"] = "Write", }, [2] = { ["act"] = "40878", ["lbl"] = "Trim/Read", }, [3] = { ["act"] = "40879", ["lbl"] = "Read", }, [4] = { ["act"] = "40880", ["lbl"] = "Touch", }, [5] = { ["act"] = "40881", ["lbl"] = "Latch", }, ["alias"] = "global auto", }, [22] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "42013", ["lbl"] = "Time|Selection", }, [1] = { ["act"] = "42014", ["lbl"] = "Cursor to|Start", }, [2] = { ["act"] = "42015", ["lbl"] = "Cursor to|End", }, [3] = { ["act"] = "42016", ["lbl"] = "Cursor to|First Touch", }, [4] = { ["act"] = "42017", ["lbl"] = "Entire Envelope", }, ["alias"] = "auto write current", }, [23] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "41160", ["lbl"] = "Time|Selection", }, [1] = { ["act"] = "41161", ["lbl"] = "Cursor to Start", }, [2] = { ["act"] = "41162", ["lbl"] = "Cursor to End", }, [3] = { ["act"] = "65535", ["lbl"] = "No-op", }, [4] = { ["act"] = "65535", ["lbl"] = "No-op", }, ["alias"] = "auto write all", }, [24] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "_RSb7ac56f191fd51d9a05ff5f1ba90a411ec88df37", ["lbl"] = "HeDa Manager", }, [1] = { ["act"] = "_RS17cdec10743ab13c46cbe5b83355d076919dec0d", ["lbl"] = "Radial Setup", }, [2] = { ["act"] = "40768", ["lbl"] = "Track|Grouping", }, [3] = { ["act"] = "40251", ["lbl"] = "Routing Matrix", }, [4] = { ["act"] = "41827", ["lbl"] = "Crossfade|Editor", }, [5] = { ["act"] = "40422", ["lbl"] = "Screenset|Layouts", }, [6] = { ["act"] = "_SWSSNAPSHOT_OPEN", ["lbl"] = "SWS|SnapShot", }, [7] = { ["act"] = "_RS793958d7585f4964c848e4f219c4cc29733251b1", ["lbl"] = "Loudness Graph", }, [8] = { ["act"] = "_RS9aebe6a6a706099d8a0af623f132ce89ed88ac10", ["lbl"] = "iReaScript", }, ["alias"] = "windows", }, [25] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "40429", ["lbl"] = "Fast End", }, [1] = { ["act"] = "40424", ["lbl"] = "Slow Start/End", }, [2] = { ["act"] = "40683", ["lbl"] = "Bezier", }, [3] = { ["act"] = "40190", ["lbl"] = "Square", }, [4] = { ["act"] = "40189", ["lbl"] = "Linear", }, [5] = { ["act"] = "40428", ["lbl"] = "Fast Start", }, ["alias"] = "auto point", }, [26] = { [-1] = { ["act"] = "back", ["lbl"] = "", }, [0] = { ["act"] = "_RSd8a03782dd33bd7a179c1009d9c1d1f24a2a6fdb", ["lbl"] = "Create VCA|for selected|tracks", }, [1] = { ["act"] = "_RSe835dd66ab316996693c9aa81a7dfb197ea58f31", ["lbl"] = "Create Folder|for selected|tracks", }, [2] = { ["act"] = "_RS5296c5c9c913df29abd5637c98a5ad53b20c72bc", ["lbl"] = "Remove VCA|for selected|tracks", }, [3] = { ["act"] = "_BR_NORMALIZE_LOUDNESS_TRACKS_LU", ["lbl"] = "Normalize to 0Lufs", }, [4] = { ["act"] = "_RS2cc10d60b91c940b5ffc52ac9efaea651de098eb", ["lbl"] = "Track Name|Manipulation", }, ["alias"] = "track actions", }, }