1. IMPORTANT:
    We launched a new online community and this space is now closed. This community will be available as a read-only resources until further notice.
    JOIN US HERE

how can i make loops follow the time signatures?

Discussion in 'Scripting Workshop' started by alswefi, Jul 9, 2015.

  1. alswefi

    alswefi NI Product Owner

    Messages:
    51
    how can i make loops follow the time signatures not the pressing of it,s button??
    the button in this case will be just on/off sound but the actual start of the loop it with the bar
    it is useful to make random possibilities and variations when using some loops of the same kit.
    thx
     
  2. alswefi

    alswefi NI Product Owner

    Messages:
    51
    is it so hard to do ??
     
  3. spawette

    spawette New Member

    Messages:
    17
    in kontakt?
    select your group/zone, go to wave editor -> Sync/Slice Tab than choose timemachine pro
    now your loops following the bpm of your sequencer
     
  4. alswefi

    alswefi NI Product Owner

    Messages:
    51
    read my thread carefully, please
    i did not mean following the bpm because it,s very easy
    i mean making loops follow the time signatures of the host i.e. the actual start of the loop it with the start of the bar
    you can find an example like that in spectrasonics stylus you will find a sync button below the play button.
     
  5. Lindon

    Lindon NI Product Owner

    Messages:
    322
    Make your loop move using on listener...

    Wait for the start of a bar code is:
    Code:
    $bar_position := $NI_SONG_POSITION/960
    if ($bar_position mod $SIGNATURE_NUM = 0)
          $bar_start := $TRUE
    end if
     
  6. alswefi

    alswefi NI Product Owner

    Messages:
    51
    Last edited: Sep 12, 2015