Is posible to put a Slash chord?

Hi, is posible to put a chord name with a bass doesn’t belong to the chord, for example G/A , Gmayor triad (G,B,D) with A in the bass?
Thanks

you could do
play [:a2]+ chord(:g4,:major)
or even define it as a new chord

define :myChord do
  [:a2]+chord(:g4,:major)
end
play myChord,release: 0.2
sleep 2
live_loop :test do
  play myChord.tick,release: 0.2
  sleep 0.2
end

Thanks so much Robin!!

Saludos
Manolo
Web:www.manolo-rodriguez.com

This would be something coo, to add to the built in tutorial for the more musically minded!

Hi,

You can create a function

define :bass_chord do | basse, accord |
  play basse
  play accord
  
end
4.times do
  bass_chord :a4, (chord :c, '6*9')
sleep 0.5
end
1 Like

Thanks noble i will try

Funny :smiling_face: nlb are just my initials !

Jajaj i m sorry, the corrector does the joke.

Saludos
www.manolo-rodriguez.com

image

We all have a translator as friend :-).

1 Like