Hello @GEKKO!
I do like your great software
and I would like to code a "chord dictation" :
- I store the list of 19 chords in a array (Do, Ré, Mi ... C#, D, Em),
$chords[0]="A"
$chords[1]="Am"
$chords[2]="A#"
$chords[2]="B"
- the program would draw a random chord
- if draw is the same as previous draw: redraw
if($draw=$old_draw) then goto (xx)
$old_draw=$draw
- write the name of the chord
Print(512, 120, $chords[$draw], 60, 1)
- speak it
- wait for the musician to play it on his instrument (guitar, piano,...)
- clear the screen
- loop
I'm looking for 2 functions
- a
random function!
- a
wait/sleep function
that I can emulate by a loop
for($i = 1, 1000, 1)
'wait
next($i)
Thanks
Yours
Mat