Play different groups with Midi Notes

moosmahna
moosmahna Member Posts: 10 Member

Hy,

I tried to figure out how to play different groups when playing different Midi Notes.

For example:

playing Midi Note 24 plays only Group 0, playing Midi Note 25 plays only Group 1 and so on….

There is a factory preset Group Selection and I tried to modify it but had no luck.

Can you help me please? Thanks a lot

Comments

  • moosmahna
    moosmahna Member Posts: 10 Member

    Found a solution

  • corbo-billy
    corbo-billy Member Posts: 110 Helper

    Super; can we know more ?

  • theodorech
    theodorech Member Posts: 76 Member
    It's always useful for everyone here to share the solution in case you found one. 

    For future reference, here's a brief example:

    on init
    set_key_color(36,$KEY_COLOR_RED)
    set_key_color(48,$KEY_COLOR_RED)
    end on on note
    disallow_group($ALL_GROUPS)
    select ($EVENT_NOTE)
    case 36
    allow_group(0)
    case 48
    allow_group(1)
    end select
    end on
  • corbo-billy
    corbo-billy Member Posts: 110 Helper

    Nice; many thanks for the educational aspect _

Back To Top