Arpeggiator factory script

CK_S
CK_S Member Posts: 5 Member

I am thinking to use the factory script via pgs to control it with simple buttons via my main script.

I was thinking ... could it drive the arpeggio only in certain groups?

Let's say i have 2 groups and i want to have a switch to activate each group for arpeggio ...🤔

Comments

  • EvilDragon
    EvilDragon Moderator Posts: 1,023 mod

    You would have to modify the script to disallow and allow groups you want every time you see a play_note() command, but it's possible.

  • CK_S
    CK_S Member Posts: 5 Member
    edited June 2022
    I gave it a try last night, it kinda works:
    disallow_group($ALL_GROUPS)
    allow_group(2)
                                    play_note($note,$velo,0,$duration)
    

    but it enables only the arpeggiated group the other group is disabled...now trying to find a way to enable the other group.

Back To Top