Again, where is the 'buttons' array defined in the class? and where are you even creating any buttons? one MUST use the 'new' keyword to create an object (like you did for the StopButton object on line 21). After creating the music buttons, they need to be assigned to the array (which needs declared and initialized) and added to the world (which you were attempting on lines 15 through 19). However, I am not quite sure if you actually need that array. What exactly is the 'stop' method in this class supposed to be doing? I mean, I see it is being called from the 'stop' method of the PlayMusicButton class (which may not be necessary); but, is it being called from the StopButton class also?
