Helpful Replydoes move 'now' by snap value exist?

Author
davidthiel@hotmail.com
Max Output Level: -88 dBFS
  • Total Posts : 109
  • Joined: 2004/10/25 18:13:57
  • Location: Redmond WA
  • Status: offline
2014/08/14 14:13:21 (permalink)

does move 'now' by snap value exist?

If it doesn't can this be considered as a product suggestion?
I would like to assign a keystroke that moves the now time by the amount of the current autogrid increment.
If I am zoomed in then it would move in smaller amounts.
I have only found move by measure and frequently that is too coarse.
There would be two operators
move now forward by snap value
move now backward by snap value
If I had them I would assign them to my ShuttlePro V2 Jog right/left functions.
and it would be sweet!
 
 
the last time I looked at the 'suggest a feature' area of Cakewalk support was not-functional so a forum thread is the next best thing.
 
thanks  ddt

 youtube: search David Thiel Pinball  
Intel I&-4770s @ 3.1GHz , 16Gig, Win7 64bit
 Focusrite Scarlett 2i2, Yamaha EX5
Korg nano Kontrol, Mackie Big Knob
Sonar Subscription,  EW Hollywood Symphonic,SD3,MOR2, Fab Four, Ra, Sym Choir, Omnisphere, JaBB, NI Komplete 10
#1
Sanderxpander
Max Output Level: -36.5 dBFS
  • Total Posts : 3873
  • Joined: 2013/09/30 10:08:24
  • Status: offline
Re: does move 'now' by snap value exist? 2014/08/14 17:00:35 (permalink)
That is a great idea.
+1 for this feature!
#2
d8
Max Output Level: -90 dBFS
  • Total Posts : 9
  • Joined: 2004/01/28 20:51:23
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 18:57:11 (permalink)
+2 for that feature.
 
Count me in on that enhancement.  I just spent the past hour looking for a way to move the 'now position' by a finer increment than one full measure (ctrl+page-up/page-down).
 
The TAB and SHIFT+TAB shortcut keys can be used for a midi track and will move forward and backward respectively one note (or sequencer event) at a time.  But for audio tracks, the 'now posistion' can only be incremented one  full measure forward / backward using the CTRL+PAGE-UP / PAGE-DOWN shortcut keys.
#3
scook
Forum Host
  • Total Posts : 24146
  • Joined: 2005/07/27 13:43:57
  • Location: TX
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 19:10:47 (permalink) ☄ Helpfulby d8 2014/10/01 04:54:55
Here are a couple of CAL scripts to move Now by 30 ticks. Copy each script to a file and bind the CAL scripts as desired.
 
To move Now forward is a one line script:
(+= Now 30)
 
To move Now backward:
(do
    (int offset 30)
    (if (< Now offset)
        (= Now 0)
        (-= Now offset)
    )
)
#4
Kev999
Max Output Level: -36 dBFS
  • Total Posts : 3922
  • Joined: 2007/05/01 14:22:54
  • Location: Victoria, Australia
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 19:19:25 (permalink)
I often want to go forward or back by 1 beat instead of a whole bar, so yes this would be a good feature. Try posting your suggestion in the new Features & Ideas Forum and see if it picks up a few votes.
 

SonarPlatinum(22.11.0.111)|Mixbus32C(4.3.19)|DigitalPerformer(9.5.1)|Reaper(5.77)
FractalDesign:DefineR5|i7-6850k@4.1GHz|16GB@2666MHz-DDR4|MSI:GamingProCarbonX99a|Matrox:M9148(x2)|UAD2solo(6.5.2)|W7Ult-x64-SP1
Audient:iD22+ASP800|KRK:VXT6|+various-outboard-gear|+guitars&basses, etc.
Having fun at work lately
#5
scook
Forum Host
  • Total Posts : 24146
  • Joined: 2005/07/27 13:43:57
  • Location: TX
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 20:00:48 (permalink) ☄ Helpfulby Kev999 2014/10/01 03:21:16
OK here are scripts to move one beat at a time
Next beat is a one liner:
(= Now (makeTime (meas Now) (+ 1 (beat Now)) 0))
 
Previous beat is a little longer:
(do
    (dword m (meas Now))
    (dword b (beat Now))
    (if (&& (== m 1) (== b 1))
        (= Now 0)
        (do
              (= Now (- (makeTime m b 0) 1))
              (= Now (makeTime (meas Now) (beat Now) 0))
         )
    )
)
 
#6
d8
Max Output Level: -90 dBFS
  • Total Posts : 9
  • Joined: 2004/01/28 20:51:23
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 22:43:14 (permalink)
Hey scook,
That is absolutely awesome!
 
It took me a while to figure out the extra steps to apply the CAL script because I was not familiar with that concept.
 
Extra steps are:
1- Place your custom CAL script(s) in the correct folder.  You can find the default folder location under EDIT + PREFERENCES + FILE + FOLDER LOCATIONS
 


2.  Bind the CAL file to a "key stroke" with EDIT + PREFERENCES + CUSTOMIZATION + KEYBOARD SHORTCUTS.  In the example below, I mapped the keyboard short cut "A" to the new custom CAL script called ZZFORWARD.CAL.
 


It works GREAT!  Thanks so much for taking time to post your solution.
#7
scook
Forum Host
  • Total Posts : 24146
  • Joined: 2005/07/27 13:43:57
  • Location: TX
  • Status: offline
Re: does move 'now' by snap value exist? 2014/09/30 22:50:44 (permalink)
Glad to help. To bad CAL is not aware of snap settings but it does know about Now, ticks, beats, measures and ticks per quarter note values.
post edited by scook - 2014/09/30 22:52:50
#8
ampfixer
Max Output Level: -20 dBFS
  • Total Posts : 5508
  • Joined: 2010/12/12 20:11:50
  • Location: Ontario
  • Status: offline
Re: does move 'now' by snap value exist? 2014/10/01 00:59:04 (permalink)
I never knew you could bind a script file to a keystroke. Hmmmm. Thinking.......

Regards, John 
 I want to make it clear that I am an Eedjit. I have no direct, or indirect, knowledge of business, the music industry, forum threads or the meaning of life. I know about amps.
WIN 10 Pro X64, I7-3770k 16 gigs, ASUS Z77 pro, AMD 7950 3 gig,  Steinberg UR44, A-Pro 500, Sonar Platinum, KRK Rokit 6 
#9
Jump to:
© 2024 APG vNext Commercial Version 5.1