Skip to content

Adding Chord Types #3

@KKSergio

Description

@KKSergio

Hi,

I tried to add new chords and it actually worked (it got the change I made) but the plugin added a "7" at the end of the chord name which I cannot intercept. Can you help me with this? I added 9th and m9th chords as follows:


var chord_type = [ [4,7],  //M (0)
                   [3,7],  //m
                   [3,6],  //dim
                   [2,4,7],  //9 = Ninth <-- the first chord I added
                   [2,3,7],  //m9 = Minor Ninth <-- the second chord I added
                   [4,7,11],   //MM7 = Major Seventh
                   [3,7,10],   //m7 = Minor Seventh
                   [4,7,10],   //Mm7 = Dominant Seventh
                   [3,6,10]];   //dim7 = Half Diminished Seventh

var chord_str = ["", "m", "o", "9", "m9", "MM", "m", "Mm", "o"];

Actually, a 9th chord has a 14 semitones interval after the root note, but if I state, for example, [4,7,14] or [3,7,14] nothing happens. What is this due to?

As you can see, I also changed the "chord_str" variable, in order to get the correct name. Though, what I get for a Cm9 chord is what you see below:

image

The played chord is not a Cm97 chord but a "simple" Cm9. How can I solve this? Is this due to inversions and - if yes - how should I change variables?

Thank you
KK

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions