|
Julian
|
|
Post:
Sep 9th 2008 at 11:19 AM |
|
|
Each "bar" is a measure.
so you can get the count by doing:
track.countMeasures() ( or song.countMeasureHeaders )
beats, are inside TGMeasure.
so you need to iterate track.getMeasures(), and get "measure.countBeats()" for each measure.
Then you are maybe interested on notes too. you'll find notes inside TGBeat class.
|
|