MidiPlayer.getMidiFileList(); working?
-
const var midiFileList = MidiPlayer.getMidiFileList();
gives me and output of:Unknown function 'getMidiFileList'
Im using the latest scriptnode branch.
Shouldn't it work? -
@ten7kur Is your "MidiPlayer" declared?
-
@ten7kur Oh sorry I just tried, it doesn't seem to work...
-
Shall I repost it in BUG?
The Expansions system is also not working. Apparently it should be....(according to @Christoph-Hart 's Github) -
@ten7kur for now expansions system is in progress
-
Nope, it works here. Do you have the MIDI files in your project repository folder?
-
@Christoph-Hart
Yes Sir! -
Make sure you're using the latest script node version and that the Reference to the MidiPlayer works and is actually a MIDIPlayer type.
const var MIDIPlayer1 = Synth.getMidiPlayer("MIDI Player1"); const var l = MIDIPlayer1.getMidiFileList(); for(e in l) Console.print(e);
-
@Christoph-Hart
Working!
Thanks!