Shivraj Sawant
Shivraj Sawant
Thank you @Mottie . Positioning problem is fixed by moving keyboard to bottom. But there is one more issue, keyboard entries are not possible when user selects cell from second...
Thank you @Mottie . It's working perfectly. Thanks a ton for this wonderful library.
Hi @Mottie There is one more issue I found. If we navigate table cells using arrow keys, cell value is updated with previously selected cell value. Could you please help...
Thanks again @Mottie , it is working. What I discovered is , when we set `usePreview: false`, it is working OK. Normally preview is helpful so is there a way...
@Mottie This is issue is still there, it works only when we set `usePreview: false`. Normally preview is helpful
Try different channel number
Look at this issue https://github.com/mudcube/MIDI.js/issues/148 I am still struggling to implement my own MIDI player and having same problem. I think it could be issue of "channel" set in the...
Please check demos on main page of [MIDI.js](https://github.com/mudcube/MIDI.js), some are similar to your requirement. Especially [Piano Typewriter](http://www.picatino.com/piano_typewriter/help/) and [Color Piano](https://galactic.ink/piano/)
Here is the one [http://mudcu.be/midi-js/](https://galactic.ink/midi-js/) with code [https://github.com/mudcube/MIDI.js/blob/master/examples/MIDIPlayer.html](https://github.com/mudcube/MIDI.js/blob/master/examples/MIDIPlayer.html) It is basic example of player from this repository
Take a look at below code from same example, especially `data.note` which gives you note value of each note ``` player.addListener(function(data) { var pianoKey = data.note - 21; var d...