-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathFKVC_ProtoolsEditingTools1.lua
More file actions
30 lines (29 loc) · 1.59 KB
/
FKVC_ProtoolsEditingTools1.lua
File metadata and controls
30 lines (29 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- @description Protools rudimentary editing tools
-- @author Frederic Kukovicic
-- @version 1.0
-- @provides
-- [main] FKVC_ProtoolsEditingTools1/CutLeft.lua
-- [main] FKVC_ProtoolsEditingTools1/CutRight.lua
-- [main] FKVC_ProtoolsEditingTools1/MoveEditCursorToNextCut.lua
-- [main] FKVC_ProtoolsEditingTools1/MoveEditCursorToPreviousCut.lua
-- [main] FKVC_ProtoolsEditingTools1/NudgeCursorOnTheLeft.lua
-- [main] FKVC_ProtoolsEditingTools1/NudgeCursorOnTheRight.lua
-- @about
-- # Protools rudimentary editing tools
--
-- As a long-time Pro Tools user, I relied heavily on certain daily tools for audio editing. To replicate those tools and workflows in Reaper, I decided to script similar actions so I could use them in Reaper as well. Here are the actions I recreated:
--
-- - CutLeft: Removes the left part of the selected media item from the playback position.
--
-- - CutRight: Removes the right part of the selected media item from the playback position.
--
-- - MoveEditCursorToNextCut: Moves the edit cursor to the next cut in any media item and selects it.
--
-- - MoveEditCursorToPreviousCut: Moves the edit cursor to the previous cut in any media item and selects it.
--
-- Note: The "move edit cursor" actions work on the currently selected track, or only on the first track if multiple tracks are selected.
--
-- - NudgeCursorToTheLeft: Moves the playback cursor 1 frame to the left and plays the audio.
--
-- - NudgeCursorToTheRight: Moves the playback cursor 1 frame to the right and plays the audio.
reaper.ShowMessageBox("Thank you for using this tool. Have fun!", "Message", 0)