Set Selection in Samples Pro Tools 23 doesn't work
Hey Guys,
i tried the Set Selection in Samples macro and i get Errors with the Message: couldn't set Selection.
-
In PT Main counter is set to Samples
-
I Select a Clip
-
Macro: Set Selection in Samples
Main Counter: 0
Selection Start: 0
Selection End: 57
Selection Length: 57Edit Macro: Cut
But it doesn't work ,....
Thx in advance
Peter
- Raphael Sepulveda @raphaelsepulveda2024-01-23 19:59:03.769Z
Hey @Peter_Hauser, it's the 0 values in the other fields that are tripping the command up.
In the macro, you just need to provide the value to the Selection Length property and leave everything else blank. Try this with a fresh instance of the macro instead of editing the one you have since that will still result in unwanted results.Here's a script version of what you described above—sets Selection Length to 57 samples and cuts:
sf.ui.proTools.appActivateMainWindow(); sf.ui.proTools.selectionSetInSamples({ selectionLength: 57, }); sf.ui.proTools.menuClick({ menuPath: ["Edit", "Cut"] });
- Progress