-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
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:
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
