Name getPhraseNotes( )
Syntax getPhraseNotes(String phraseTitle);
Example Etude e = new Etude(this);
float[][] notes = {{e.C5,e.Q}, {e.D5,e.Q}, {e.E5, e.Q}};
e.createPhrase("phrase",notes);
float[][] n = e.getPhraseNotes("phrase");
Parameters phraseTitle
Return float[ ][ ]
Usage web & application
Description Returns the notes from a phrase. This method is especially usefull if you want to get music notes from a midi file.