Pastacrow Posted January 11, 2019 Share Posted January 11, 2019 (edited) I have set up two key bindings to advance the cursor to the next measure and the previous measure (works beautifully!). However, I would like to be able to set it up for even smaller increments (ie 1/4 note). I've looked through the available commands and haven't found that option. Is there a way of doing that? For those wondering 'why?' - when checking the timing of drum beats, shakers and fast strum guitars, I like to visually work through the tracks and find troublesome sections. To do that currently I set it to snap to 1/4 note and then manually click through the hundreds of steps. It would speed up my process to have keystrokes that could move the cursor across the screen quickly. Any thoughts? Edited January 11, 2019 by Pastacrow Link to comment Share on other sites More sharing options...
scook Posted January 11, 2019 Share Posted January 11, 2019 CAL is one answer, Here are two scripts, one to advance Now by one beat, one to go back one beat from Now. Create files for each script in the CAL folder and bind them as needed. Advance now by one beat Quote ;; increment now by beat ;; Name: Now+1Beat.CAL (= Now (makeTime (meas Now) (+ (beat Now) 1) (tick Now))) Go back one beat from now Quote ;; decrement now by beat ;; Name: Now-1Beat.CAL (do (int m (meas Now)) (int b (beat Now)) (int t (tick Now)) (if (< Now (makeTime 1 2 0)) (= Now 0) (if (> b 1) (= Now (makeTime m (- b 1) t)) (= Now (makeTime (- m 1) (beat (- (makeTime m b 0) 1)) t))))) Link to comment Share on other sites More sharing options...
Pastacrow Posted January 11, 2019 Author Share Posted January 11, 2019 Brilliant! Thank you so much scook - this is exactly what I was looking for! Link to comment Share on other sites More sharing options...
Heinz Hupfer Posted January 11, 2019 Share Posted January 11, 2019 Hi:) With "TAB" you walk through every transient of a track! Bassman. Link to comment Share on other sites More sharing options...
Pastacrow Posted January 11, 2019 Author Share Posted January 11, 2019 Thanks Bassman for alerting me to that - I haven't used Audiosnap + transients much at all. I'll look into it. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now