Loopy Pro: Create music, your way.

What is Loopy Pro?Loopy Pro is a powerful, flexible, and intuitive live looper, sampler, clip launcher and DAW for iPhone and iPad. At its core, it allows you to record and layer sounds in real-time to create complex musical arrangements. But it doesn’t stop there—Loopy Pro offers advanced tools to customize your workflow, build dynamic performance setups, and create a seamless connection between instruments, effects, and external gear.

Use it for live looping, sequencing, arranging, mixing, and much more. Whether you're a live performer, a producer, or just experimenting with sound, Loopy Pro helps you take control of your creative process.

Download on the App Store

Loopy Pro is your all-in-one musical toolkit. Try it for free today.

AUM Transport Return to Zero?

RTFM and can’t seem to find an answer? Is there a way to have AUM’s transport automatically reset to “zero” after pressing Stop? This has been vexing me for awhile now 🤔

Comments

  • edited December 2021

    @Apex said:
    RTFM and can’t seem to find an answer? Is there a way to have AUM’s transport automatically reset to “zero” after pressing Stop? This has been vexing me for awhile now 🤔

    No. The play button is actually a play/pause toggle. You'll need to make another tap (on the rewind button) to return to 0 (or pre-roll, if set).

  • @Apex said:
    RTFM and can’t seem to find an answer? Is there a way to have AUM’s transport automatically reset to “zero” after pressing Stop? This has been vexing me for awhile now 🤔

    If you're using an external controller, you could make a script (StreamByter) to convert a Stop button into Pause, Rewind, while retaining the Play/Pause toggle. If necessary, you can configure these in the MIDI Control menu under the hamburger menu. Otherwise, you're committed to two taps.

  • _ki_ki
    edited December 2021

    I could offer a work-around: Since there is an automatable AUM Transport Rewind command, a short midi processor script in Mozaic or StreamByter could catch the host stop and send out a specific midi command which then can be used to trigger the AUM transport rewind:

    .

    Streambyter script ( free midi processor AUv3 )

    # === Send ch16 CC-0 value 127 on host stop ===
    #
    # Script can be used to auto-rewind AUMs timeline to 00:1 on host stop by routing the
    # StreamByter midi output to AUMs midi control port and then in AUMs Midi Comtrol setup 
    # Transport/Rewind to react to CC 0 on midi channel 16.
    #
    # Author: -ki   https://forum.audiob.us/profile/_ki 
    
    
    IF M0 == F0 7D 01 7C # Host Stop translated to StreamByter as internal sysex 
      SEND BF 00 7F
    END
    
    BLOCK # Don‘t relay any midi
    
    
    IF LOAD
      SET NAME REWIND # Set icon name
    END
    
  • Thanks for the info. Well aware of the "manual" way of resetting it. Since the addition of keyboard support (see: Spacebar) for transport, was hoping I could quickly start/stop in time with the beat. Guess this will have to be a feature request. ;)

    Cheers

  • @_ki said:
    I could offer a work-around: Since there is an automatable AUM Transport Rewind command, a short midi processor script in Mozaic or StreamByter could catch the host stop and send out a specific midi command which then can be used to trigger the AUM transport rewind:

    .

    Streambyter script ( free midi processor AUv3 )

    # === Send ch16 CC-0 value 127 on host stop ===
    #
    # Script can be used to auto-rewind AUMs timeline to 00:1 on host stop by routing the
    # StreamByter midi output to AUMs midi control port and then in AUMs Midi Comtrol setup 
    # Transport/Rewind to react to CC 0 on midi channel 16.
    #
    # Author: -ki   https://forum.audiob.us/profile/_ki 
    
    
    IF M0 == F0 7D 01 7C # Host Stop translated to StreamByter as internal sysex 
      SEND BF 00 7F
    END
    
    BLOCK # Don‘t relay any midi
    
    
    IF LOAD
      SET NAME REWIND # Set icon name
    END
    

    You can also just send two Stops. AUM rewinds if it gets a Stop while already stopped.

Sign In or Register to comment.