Name addPhraseNote( )
Syntax addPhraseNote(String phraseTitle, float[] note);
Example

Etude e = new Etude(this);
e.createPhrase("phrase_1");
float[] note = {{e.C5, e.Q}};
e.addPhraseNote("phrase_1", note);

Parameters phraseTitle:string
note: float[ ]
Return none
Usage web & application
Description Add a note to a phrase. A note is a float array where the first index is the pitch value and the second index is the rhytm value.